What is the TradeOS (test) MCP server?
[TEST] TradeOS MCP bridge: ticker search, My Agent, chart TA, macro news. npm or HTTP.
How to install TradeOS (test)
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-test oauth, then paste the printed token.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"tradeos-mcp-test": {
"command": "npx",
"args": [
"-y",
"@tradeos/tradeos-mcp-test",
"-y"
],
"env": {
"TRADEOS_ACCESS_TOKEN": "<YOUR_TRADEOS_ACCESS_TOKEN>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"tradeos-mcp-test": {
"command": "npx",
"args": [
"-y",
"@tradeos/tradeos-mcp-test",
"-y"
],
"env": {
"TRADEOS_ACCESS_TOKEN": "<YOUR_TRADEOS_ACCESS_TOKEN>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"tradeos-mcp-test": {
"command": "npx",
"args": [
"-y",
"@tradeos/tradeos-mcp-test",
"-y"
],
"env": {
"TRADEOS_ACCESS_TOKEN": "<YOUR_TRADEOS_ACCESS_TOKEN>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"tradeos-mcp-test": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@tradeos/tradeos-mcp-test",
"-y"
],
"env": {
"TRADEOS_ACCESS_TOKEN": "<YOUR_TRADEOS_ACCESS_TOKEN>"
}
}
}
}Claude Code
claude mcp add tradeos-mcp-test --env TRADEOS_ACCESS_TOKEN=<YOUR_TRADEOS_ACCESS_TOKEN> -- npx -y @tradeos/tradeos-mcp-test -yRelated MCP servers
TradeOS
Active
TradeOS MCP: ticker search, My Agent, chart TA, macro news. npm stdio or HTTP.
0
View repository →JavaScript
MIT