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_TOKENrequiredsecretOAuth 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 -yRelated MCP servers
TradeOS (test)
Active
[TEST] TradeOS MCP bridge: ticker search, My Agent, chart TA, macro news. npm or HTTP.
0
View repository →JavaScript
MIT