Indigo MCP Server

Indigo Protocol MCP — iAsset prices, CDP analytics, stability pools, staking & governance

Remote serverstreamable-http

What is the Indigo MCP server?

If you already use Indigo, the indigo mcp server is the piece that lets your assistant work with it directly. Indigo Protocol MCP — iAsset prices, CDP analytics, stability pools, staking & governance.

What the server does

The setup commands auto-configure Claude Desktop, Claude Code, Cursor, or Windsurf. No manual config editing needed.

  • Real-time iAsset prices (iUSD, iBTC, iETH, iSOL, iEUR, iJPY)
  • ADA and INDY token price feeds
  • CDP/loan browsing with pagination and filtering
  • Owner lookup by payment key hash or bech32 address
  • CDP health analysis with collateral ratio and liquidation risk status
  • Stability pool state and account queries

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • get_assets — Get all Indigo iAssets with prices and interest data
  • get_asset — Get details for a specific iAsset
  • get_asset_price — Get the current price for a specific iAsset
  • get_ada_price — Get the current ADA price in USD
  • get_indy_price — Get the current INDY token price in ADA and USD
  • get_all_cdps — Get all CDPs/loans, optionally filtered by iAsset
  • get_cdps_by_owner — Get CDPs for a specific owner
  • get_cdps_by_address — Get CDPs for a specific Cardano address
  • analyze_cdp_health — Analyze collateral ratios and liquidation risk
  • open_cdp — Open a new CDP position (returns unsigned CBOR tx)
  • deposit_cdp — Deposit additional collateral into a CDP
  • withdraw_cdp — Withdraw collateral from a CDP

Installation

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

Credentials and setup notes

Configuration is passed through the environment: INDEXER_URL, BLOCKFROST_API_KEY, SEED_PHRASE, BLOCKFROST_PROJECT_ID. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Where it fits

This sits in the payments and commerce group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Indigo's toolset — get_assets, get_asset, get_asset_price and 11 more — is a fair guide to whether it matches your workflow. It is maintained by IndigoProtocol; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Indigo's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Worth knowing first

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Indigo.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
get_assetsGet all Indigo iAssets with prices and interest data
get_assetGet details for a specific iAsset
get_asset_priceGet the current price for a specific iAsset
get_ada_priceGet the current ADA price in USD
get_indy_priceGet the current INDY token price in ADA and USD
get_all_cdpsGet all CDPs/loans, optionally filtered by iAsset
get_cdps_by_ownerGet CDPs for a specific owner
get_cdps_by_addressGet CDPs for a specific Cardano address
analyze_cdp_healthAnalyze collateral ratios and liquidation risk
open_cdpOpen a new CDP position (returns unsigned CBOR tx)
deposit_cdpDeposit additional collateral into a CDP
withdraw_cdpWithdraw collateral from a CDP
close_cdpClose a CDP and reclaim collateral
mint_cdpMint additional iAssets from an existing CDP (increases debt)

How to install the Indigo MCP server

**Standard config:**

```json
{
  "mcpServers": {
    "indigo": {
      "command": "npx",
      "args": ["-y", "@indigoprotocol/indigo-mcp"],
      "env": {
        "INDEXER_URL": "https://analytics.indigoprotocol.io/api",
        "BLOCKFROST_API_KEY": "your-blockfrost-project-id"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
INDEXER_URLEndpoint or connection string the server talks to.Yes
BLOCKFROST_API_KEYCredential the server authenticates with.Yes
SEED_PHRASEConfiguration value read at startup.Optional
BLOCKFROST_PROJECT_IDConfiguration value read at startup.Optional

Example prompts to try

  • Use Indigo to get assets.
  • Use Indigo to get asset.
  • Use Indigo to get asset price.

Frequently asked questions

It connects Indigo to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (get_assets, get_asset, get_asset_price, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Indigo directly.