Connect your AI in 60 seconds

The Tradingale MCP server exposes the catalog's descriptive metrics to any MCP-compatible assistant over streamable HTTP, with OAuth sign-in or an API token. This page is the connection reference for every client we have verified.

claude.ai and the Claude apps: no token needed

In Claude, open Settings → Connectors → Add custom connector, name it Tradingale, and paste the server URL below. Leave the OAuth fields empty: Claude registers itself and walks you through the Tradingale sign-in. Your account's plan decides the data scope.

https://tradingale.com/mcp

Claude Code: one command

claude mcp add --transport http tradingale https://tradingale.com/mcp

Claude Code handles authentication from there. That is the whole setup.

Claude Desktop: two config options

Add one of the following to your Claude Desktop configuration file, with your own token in place of the placeholder.

Option 1: Streamable HTTP (Claude Desktop 0.8+)

{
  "mcpServers": {
    "tradingale": {
      "url": "https://tradingale.com/mcp",
      "headers": {
        "Authorization": "Bearer <YOUR_API_TOKEN>"
      }
    }
  }
}

Option 2: Using mcp-remote (Older versions, requires Node.js)

{
  "mcpServers": {
    "tradingale": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://tradingale.com/mcp",
        "--header",
        "Authorization: Bearer <YOUR_API_TOKEN>"
      ]
    }
  }
}

Cursor, VS Code, Windsurf

In Cursor: Settings → Tools & MCP → New MCP Server opens mcp.json. The same file shape works in VS Code and Windsurf:

{
  "mcpServers": {
    "tradingale": {
      "url": "https://tradingale.com/mcp"
    }
  }
}

Save, then click the server entry to sign in: the IDE opens the Tradingale login in your browser and returns with the tools listed. Deep-link callbacks (cursor://, vscode://, windsurf://) are supported.

ChatGPT

On a paid plan with developer mode enabled: Settings → Connectors → Create, paste https://tradingale.com/mcp and complete the OAuth sign-in when prompted.

Grok and clients without OAuth support: the secret URL

Some MCP clients cannot run an OAuth flow or attach headers (Grok's custom connectors, some low-code platforms). For those, put your API token from Settings > API directly in the server URL:

https://tradingale.com/mcp?key=<YOUR_API_TOKEN>

Treat that URL like a password: it carries your token and your quota. If it ever leaks, regenerate the token in Settings and update the URL. When both are present, the Authorization header wins over the URL key.

The seven tools

All tools are read-only. They serve descriptive metrics and model parameters; none of them touches an exchange or an account.

get_instrument

Returns the descriptive metrics and model parameters for a specific crypto or stock, including the score breakdown and exchange availability.

search_instruments

Filters the catalog by Martingale Score, Startingale, exchange, rounds, and other criteria, and returns a ranked list of matching instruments.

list_top_crypto

Lists the highest-scoring cryptocurrencies by Martingale Score, with an optional minimum Startingale filter.

list_top_stocks

Lists the highest-scoring US stocks by Martingale Score, with an optional minimum Startingale filter.

crypto_overview

Summarizes the cryptocurrency catalog: the Startingale distribution and the three highest-scoring instruments.

stock_overview

Summarizes the stock catalog the same way: Startingale distribution and the three highest-scoring instruments.

market_overview

A combined view across crypto and stocks, with the Startingale distribution and leaders for each market.

Three questions to try first

Once connected, Claude can answer descriptive questions about the catalog. For example:

  • Which instruments currently show a Martingale Score above 4?
  • Summarize the crypto market overview.
  • How is the model structured for BTC?

The answers describe how the model currently reads the data. What you do with those readings happens outside Tradingale, on your side.

Tradingale never places orders, holds funds, or gives advice. What you build and run is yours.

← Back to Build

Data for informational purposes only. Not investment advice.