Claude Setup
Connect True Markets MCP to Claude.ai, Claude Desktop, or Claude Code.
info
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.
Market Data only
Read-only access to prices, trending assets, and AI-generated analysis. No account required.
Claude.ai & Claude Desktop
- Open Settings → Integrations.
- Click Add MCP Server.
- Enter the URL:
https://mcp.truemarkets.co/marketdata/mcp
Claude Code
.mcp.json
{
"mcpServers": {
"truemarkets-marketdata": {
"type": "http",
"url": "https://mcp.truemarkets.co/marketdata/mcp"
}
}
}
Or via CLI:
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
- Open Settings → Integrations.
- Click Add MCP Server.
- Enter the URL:
https://mcp.truemarkets.co/mcp
Claude Code
.mcp.json
{
"mcpServers": {
"truemarkets-trading": {
"type": "http",
"url": "https://mcp.truemarkets.co/mcp"
}
}
}
Or via CLI:
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.