drio
Open app

MCP Tradovate Server

Source

MCP server for the Tradovate platform

Catalog onlyCatalog onlySTDIO

Overview

MCP Tradovate Server is a Model Context Protocol (MCP) server designed for integration with the Tradovate platform, enabling AI assistants to manage trading accounts through natural language interactions.

To use the MCP Tradovate Server, you can install it via Smithery or manually by cloning the repository, installing dependencies, and running the server with your Tradovate credentials configured in a .env file.

  • Complete Tradovate API integration - Secure authentication handling - Real-time market data access - Account management capabilities - Risk management controls - Order placement and management - Comprehensive test coverage
  1. Automating trading operations through AI assistants.
  2. Managing multiple trading accounts efficiently.
  3. Accessing real-time market data for informed trading decisions.

Add to your AI client

Use these steps to connect MCP Tradovate Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-tradovate-0xjmp": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-tradovate-0xjmp"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-tradovate-0xjmp": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-tradovate-0xjmp"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-tradovate-0xjmp": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-tradovate-0xjmp"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-tradovate-0xjmp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-tradovate-0xjmp"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-tradovate-0xjmp": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-tradovate-0xjmp"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-tradovate-0xjmp": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-tradovate-0xjmp"
      ]
    }
  }
}

FAQ

**What programming language is used?**

The server is built using Go (Golang).

**Is there a license for this project?**

Yes, it is licensed under the MIT License.

**How can I contribute to the project?**

Contributions are welcome! You can submit a Pull Request on the GitHub repository.