Claude Setup

Connect True Markets MCP to Claude.ai, Claude Desktop, or Claude Code.

The Trading server includes all Market Data tools plus authentication, quotes, and trade execution. If you want both market data and trading, you only need the Trading server.

Choose your server

Market Data only

Read-only access to prices, trending assets, and AI-generated analysis. No account required.

Claude.ai & Claude Desktop

  1. Open Settings Integrations
  2. Click Add MCP Server
  3. Enter the URL:https://mcp.truemarkets.co/marketdata/mcp

Claude Code

json (.mcp.json)

{
  "mcpServers": {
    "truemarkets-marketdata": {
      "type": "http",
      "url": "https://mcp.truemarkets.co/marketdata/mcp"
    }
  }
}

Or via CLI:

bash

claude mcp add truemarkets-marketdata --transport http https://mcp.truemarkets.co/marketdata/mcp

Trading

Everything in Market Data, plus authentication, quotes, and trade execution. Requires a True Markets account.

Claude.ai & Claude Desktop

  1. Open Settings Integrations
  2. Click Add MCP Server
  3. Enter the URL:https://mcp.truemarkets.co/mcp

Claude Code

json (.mcp.json)

{
  "mcpServers": {
    "truemarkets-trading": {
      "type": "http",
      "url": "https://mcp.truemarkets.co/mcp"
    }
  }
}

Or via CLI:

bash

claude mcp add truemarkets-trading --transport http https://mcp.truemarkets.co/mcp

Verify it works

Start a new conversation and try asking:

"What crypto tokens are available for trading on Solana?"

Claude will call the list_assets tool and return all tradeable Solana tokens.