Cursor Setup
Connect True Markets MCP to Cursor IDE.
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.
Via Settings UI
- Open Cursor Settings (Cmd+Shift+J on Mac, Ctrl+Shift+J on Windows/Linux)
- Navigate to MCP in the sidebar
- Click Add new MCP server
- Select HTTP and enter:
https://mcp.truemarkets.co/marketdata/mcp
Via config file
Add to .cursor/mcp.json:
json
{
"mcpServers": {
"truemarkets-marketdata": {
"type": "http",
"url": "https://mcp.truemarkets.co/marketdata/mcp"
}
}
}Trading
Everything in Market Data, plus authentication, quotes, and trade execution. Requires a True Markets account.
Via Settings UI
- Open Cursor Settings (Cmd+Shift+J on Mac, Ctrl+Shift+J on Windows/Linux)
- Navigate to MCP in the sidebar
- Click Add new MCP server
- Select HTTP and enter:
https://mcp.truemarkets.co/mcp
Via config file
Add to .cursor/mcp.json:
json
{
"mcpServers": {
"truemarkets-trading": {
"type": "http",
"url": "https://mcp.truemarkets.co/mcp"
}
}
}Verify it works
Open the Cursor chat and try asking:
"What tokens are trending by volume? Show me the top 5."
Cursor will call the get_trending_assets tool and return assets ranked by trading volume.