Connects Claude to CoTrader's stock screening API with tools for querying 11,000+ US stocks using natural language criteria like "RSI under 30 with price above 200 EMA." Exposes five tools: screen_stocks for custom queries across price, volume, moving averages, and momentum indicators; detect_patterns and scan_patterns for identifying technical formations like double bottoms, support/resistance levels, and channels; search_symbols for ticker lookup; and get_stock_bars for historical OHLCV data. Runs as a remote server over streamable HTTP, so you just add the API endpoint to Claude Desktop or your MCP-compatible editor with your CoTrader API key. Useful when you want technical analysis and pattern detection without leaving your AI assistant.
AI-powered stock screening and chart pattern detection for Claude Desktop, Claude Code, Cursor, and other MCP-compatible AI assistants.
Screen 11,000+ US stocks using natural language and detect technical chart patterns — all from your AI assistant.
| Tool | Description |
|---|---|
screen_stocks | Screen stocks using natural language (e.g., "RSI under 30 with price above 200 EMA") |
detect_patterns | Detect chart patterns for a specific stock (support/resistance, trendlines, channels, etc.) |
scan_patterns | Scan the entire universe for a specific pattern type |
search_symbols | Search for ticker symbols by name or prefix |
get_stock_bars | Get historical daily OHLCV price data |
Sign up at getcotrader.com and create an API key at getcotrader.com/api-keys.
Claude Desktop
Open Settings > Integrations > Add and enter:
https://api.getcotrader.com/mcp?api_key=YOUR_API_KEY
Claude Code / Cursor / VS Code
Add to your MCP settings:
{
"mcpServers": {
"cotrader": {
"url": "https://api.getcotrader.com/mcp",
"headers": {
"X-API-Key": "YOUR_API_KEY"
}
}
}
}
Full documentation: getcotrader.com/docs/mcp-server
MIT