Market Intel MCP

Real-time crypto prices, FX rates, and stock quotes for AI agents — MCP tools, no API keys.

Documentation

Market Intel MCP — by SelfLabbs

Real-time market data for AI agents: cryptocurrency prices, foreign-exchange rates, and stock quotes — as MCP tools your agent can call mid-task. No API keys.

Tools

ToolWhat it doesSource
crypto_priceCurrent USD price for one or more coins by symbol (BTC, ETH, SOL…)Coinbase
crypto_marketSnapshot of major cryptocurrencies with current USD pricesCoinbase
fx_convertConvert an amount between two currencies at the latest ECB rateFrankfurter / ECB
fx_ratesLatest exchange rates for a base currencyFrankfurter / ECB
stock_quoteLatest price, previous close, day high/low, and volume for a stock, ETF, or indexYahoo Finance

No API keys required for any tool.

Quick start (hosted)

Claude Code

claude mcp add --transport http market-intel https://market.selflabbs.com/mcp

Claude Desktop / other clients

{
  "mcpServers": {
    "market-intel": {
      "command": "npx",
      "args": ["mcp-remote", "https://market.selflabbs.com/mcp"]
    }
  }
}

Example agent workflows

  • "What's bitcoin trading at, and how much is 500 USD in EUR?"crypto_price + fx_convert
  • "Give me a snapshot of the major coins right now."crypto_market
  • "Latest quote for AAPL and TSLA."stock_quote

Pricing

The hosted endpoint is freemium:

  • Free — all five feeds, results capped at 10 items per call. No key required.
  • Builder — $19/mo — uncapped results, 5,000 tool calls/mo, priority endpoint.
  • Team — $49/mo — uncapped results, 25,000 tool calls/mo, usage dashboard.

Subscribe → — one subscription unlocks Pro on every SelfLabbs server.

Using your Pro key

After subscribing you receive a license key beginning with SELFLABBS-. Pass it as a Bearer token to remove the free-tier caps:

claude mcp add --transport http --header "Authorization: Bearer SELFLABBS-XXXX-XXXX" market-intel https://market.selflabbs.com/mcp

Self-host (Cloudflare Workers, free tier)

Create a Worker, paste worker.js, deploy. No configuration or API keys needed.

License

MIT. Data from Coinbase, the European Central Bank (via Frankfurter), and Yahoo Finance under their respective terms. Market data is provided as-is for informational purposes and is not financial advice.