PluginBench
MCP Server
Active
MIT

TradeOS MCP Server

io.github.TradeOS-AI/tradeos-mcp

What is the TradeOS MCP server?

TradeOS MCP: ticker search, My Agent, chart TA, macro news. npm stdio or HTTP.

How to install TradeOS

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • TRADEOS_ACCESS_TOKEN
    required
    secret

    OAuth Bearer for mcp-call. Run: npx -y @tradeos/tradeos-mcp oauth, then paste the printed token.

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "tradeos-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@tradeos/tradeos-mcp",
        "-y"
      ],
      "env": {
        "TRADEOS_ACCESS_TOKEN": "<YOUR_TRADEOS_ACCESS_TOKEN>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "tradeos-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@tradeos/tradeos-mcp",
        "-y"
      ],
      "env": {
        "TRADEOS_ACCESS_TOKEN": "<YOUR_TRADEOS_ACCESS_TOKEN>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "tradeos-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@tradeos/tradeos-mcp",
        "-y"
      ],
      "env": {
        "TRADEOS_ACCESS_TOKEN": "<YOUR_TRADEOS_ACCESS_TOKEN>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "tradeos-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@tradeos/tradeos-mcp",
        "-y"
      ],
      "env": {
        "TRADEOS_ACCESS_TOKEN": "<YOUR_TRADEOS_ACCESS_TOKEN>"
      }
    }
  }
}
Claude Code
claude mcp add tradeos-mcp --env TRADEOS_ACCESS_TOKEN=<YOUR_TRADEOS_ACCESS_TOKEN> -- npx -y @tradeos/tradeos-mcp -y

Related MCP servers

[TEST] TradeOS MCP bridge: ticker search, My Agent, chart TA, macro news. npm or HTTP.

0
JavaScript
MIT
View repository →