TraderSpy MCP — AI crypto signals, smart money whale positions and live futures market data. Read-only.
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Documented (README)
git clone https://github.com/target1m/traderspy-mcpResumen de MCP Servers
# TraderSpy MCP — Crypto Smart Money & AI Signals
[](https://smithery.ai/servers/traderspy/traderspy)
[](https://github.com/target1m/traderspy-mcp/blob/master/LICENSE)
Connect Claude, Claude Code, ChatGPT, Grok or any MCP client to TraderSpy's live crypto futures data:
AI signals, whale positioning, market data and your own account — with one URL.
**Every tool is read-only.** The connector cannot place, close or modify an order, and it has no
withdrawal or transfer tool. It answers questions; you place your trades yourself.
## Features
- **AI Trading Signals** — Real-time AI-powered crypto futures signals with entry/exit targets, stop loss, and confidence scores
- **Smart Money Tracking** — Track whale/elite trader positions across Binance, Hyperliquid, Bybit, and OKX
- **Elite Leaderboard** — Top traders ranked by SmartScore (weighted: PnL, win rate, ROI, consistency)
- **Live Positions** — See what top traders are trading right now
- **Market Stats** — Aggregate market statistics across tracked exchanges
- **Market Data** — Real-time prices, OHLCV candles, and 19 technical indicators (RSI, MACD, EMA, SMA, Bollinger Bands, ATR, ADX, Stochastic, OBV, VWAP, CCI, MFI, Williams %R, ROC, SuperTrend, Ichimoku, Keltner Channels, pivot points, swing support/resistance) with previous-bar direction, configurable periods, up to 3 timeframes per call and a plain-language summary; funding rate, open interest and long/short positioning for Binance perpetuals
- **Your Own Account** — Read your Hyperliquid balance, open positions and unrealized PnL (personal key required)
- **Interactive Views** — In hosts that support MCP Apps, `get_signals` and `get_signal_details` render signal cards and charts instead of plain text
## Quick Start
### Claude Code
**Option 1: Add MCP server directly**
```bash
claude mcp add --transport http traderspy https://mcp.traderspy.app/mcp
```
**Option 2: Install as plugin**
Inside Claude Code, run:
```
/plugin marketplace add target1m/traderspy-mcp
/plugin install traderspy@traderspy-mcp
```
The plugin asks for your **TraderSpy API key** when you enable it. Generate one at
<https://traderspy.app/mcp> (Settings → MCP) — it starts with `mcp_` and is shown once. Claude Code
stores it in your keychain and sends it as a bearer token; it never lands in `settings.json` or in
the repo. A free account is enough (5 tool calls/day, 100 on premium). The plugin also ships six
skills — market briefing, technical analysis, market screener, trading signals, smart money and
position check.
### ChatGPT
1. Go to [ChatGPT](https://chatgpt.com) → Settings → Connected Apps
2. Click **"Add MCP Server"**
3. Enter the server URL:
```
https://mcp.traderspy.app/mcp
```
4. Complete the OAuth login flow to connect your TraderSpy account
### Grok (xAI)
1. Open [grok.com/connectors](https://grok.com/connectors) → **New Connector** → **Custom**
2. Paste your personal connector URL (the key is embedded, so no extra authentication is needed):
```
https://mcp.traderspy.app/mcp?token=mcp_YOUR_KEY
```
3. Grok reads the tool list and TraderSpy is available in your next chat
From the terminal, Grok Build takes the same URL:
```bash
grok mcp add --transport http traderspy "https://mcp.traderspy.app/mcp?token=mcp_YOUR_KEY"
```
The same endpoint also works as a remote MCP tool in the xAI API. Grok supports Streamable HTTP and
SSE only — both of which this server speaks.
### Cursor
Add TraderSpy to your Cursor MCP config (`.cursor/mcp.json`):
```json
{
"mcpServers": {
"traderspy": {
"type": "http",
"url": "https://mcp.traderspy.app/mcp"
}
}
}
```
### Cline
Add TraderSpy to `cline_mcp_settings.json`:
```json
{
"mcpServers": {
"traderspy": {
"type": "streamableHttp",
"url": "https://mcp.traderspy.app/mcp",
"headers": {
"Authorization": "Bearer mcp_YOUR_KEY"
},
"disabled": false,
"autoApprove": []
}
}
}
```
`type` must be exactly `streamableHttp` — `streamable-http` or a missing `type` falls back to SSE
and the server answers 405. Full walkthrough, including how to get the key and how to verify the
connection: [llms-install.md](llms-install.md).
### Windsurf / Other MCP Clients
Add the following to your MCP configuration:
```json
{
"traderspy": {
"type": "http",
"url": "https://mcp.traderspy.app/mcp"
}
}
```
## Skills
The plugin ships six skills — playbooks that tell the assistant which tools answer which question,
how to read the fields, and how to present the result without turning market data into advice.
They live in `skills/<name>/SKILL.md` (Agent Skills format) and load automatically in Claude Code;
for the ChatGPT plugin portal run `scripts/package-skills.sh` and upload the ZIPs from `dist/skills/`.
| Skill | Triggers on | Tools it drives |
| --- | --- | --- |
| `market-briefing` | "what's happening in crypto", "morning brief", "market update" | price, derivatives, screener, signal stats, signals |
| `technical-analysis` | "analyse BTC", "is SOL oversold", support/resistance, funding, open interest | technical indicators (multi-timeframe), derivatives, price, candles |
| `market-screener` | "which coins are oversold", "find setups", "compare BTC ETH SOL", "what happened after…" | screener, backtest |
| `trading-signals` | "latest AI signals", "is this signal still valid", "how are the signals doing" | signals, signal details, signal stats |
| `smart-money` | "what are whales doing", "best traders on Hyperliquid", "research this trader" | leaderboard, top traders, positions, profile, history, market stats |
| `position-check` | "check my positions", "how far am I from liquidation", "what do you think of my long" | account, technicals, derivatives, positions |
Every skill carries the same conduct rules: report what the data shows and leave the decision to the
user, never present a hit rate or a backtest as a forecast, and say plainly that the connector cannot
place, close or move anything.
## Authentication
Two ways to connect, both tied to your TraderSpy account:
- **Personal URL (recommended)** — generate it at [traderspy.app/mcp](https://traderspy.app/mcp) or in
Settings. The key is embedded in the URL (`https://mcp.traderspy.app/mcp?token=mcp_...`), so hosts
that ask for authentication can be left on "None". Shown once, revocable any time.
- **OAuth** — supported for clients that drive the OAuth flow themselves.
Treat the personal URL like a password: it grants read access to your account data. If it leaks,
revoke it on the same page and generate a new one.
| Plan | Daily Limit | Data |
|------|------------|------|
| Free | 5 calls/day | Real-time |
| Pro | 100 calls/day | Real-time |
Don't have an account? [Sign up for free](https://traderspy.app) to get started.
## Available Tools
### Signals
| Tool | Description |
|------|-------------|
| `get_signals` | Recent AI trading signals with filtering |
| `get_signal_details` | Full signal details with AI review |
| `get_signal_stats` | Signal performance statistics |
### Smart Money
| Tool | Description |
|------|-------------|
| `get_top_traders` | Ranked traders by exchange and metrics |
| `get_elite_leaderboard` | Top 10 by SmartScore |
| `get_trader_profile` | Trader profile with metrics and positions |
| `get_trader_position_history` | Trader's closed trade history |
| `get_positions` | Live and historical positions |
| `get_market_stats` | Aggregate market statistics |
| `get_exchanges` | List of tracked exchanges |
### Market Data
| Tool | Description |
|------|-------------|
| `get_price` | Real-time price, 24h high/low, volume, and change% for one or more symbols |
| `get_candles` | OHLCV candles (1m, 5m, 15m, 1h, 4h, 1d) for charting and analysis |
| `get_derivatives` | Funding rate (current, 24h/3d avg, annualized), open interest (24h/4h change, OI×price regime), top-trader + all-account long/short ratios, taker flow — up to 5 Binance perpetuals |
| `get_technical_indicators` | 19 indicators (RSI, MACD, EMA, SMA, Bollinger Bands, ATR, ADX, Stochastic, OBV, VWAP, CCI, MFI, Williams %R, ROC, SuperTrend, Ichimoku, Keltner Channels, pivot points, swing support/resistance) — multi-timeframe (`intervals`, up to 3), custom `periods`, `history` series, per-timeframe `summary` + `confluence` |
| `screen_symbols` | Scan the most-traded pairs (≤ 100, ranked by 24h volume) or an explicit list for up to 3 AND-ed conditions — `{metric, op, value, period?, period2?}` over `rsi`, `stochastic`, `cci`, `mfi`, `williamsR`, `adx`, `roc`, `macdHistogram`, `atrPct`, `volumeRatio`, `bbPercentB`, `bbWidthPct`, `priceVsEma`, `emaSpread`, `supertrend`, `changePct`, `price` with `lt` / `gt` / `crossAbove` / `crossBelow`; one quota unit. No conditions + `symbols` = comparison table |
| `backtest_condition` | Event study on one symbol/timeframe: occurrences of the conditions over the stored tape (≤ 1000 candles), forward return / win rate / best-worst excursion per horizon, the unconditional baseline and the edge over it, the last five episodes, and whether the condition is active now |
| `get_tracked_symbols` | List all crypto futures symbols with real-time data available |
### Your Account
| Tool | Description |
|------|-------------|
| `get_my_account` | Your Hyperliquid balance, open positions and unrealized PnL (read-only, personal key required) |
## Example Prompts
- "What are the top crypto signals right now?"
- "Show me the elite trader leaderboard"
- "What are whales buying on Binance?"
- "Get the signal performance stats for the last 24 hours"
- "Show me BTC positions from top traders"
- "Who are the most profitable traders on Hyperliquid this week?"
- "What's the overall market sentiment — are more traders long or short on BTC?"
- "What's the current price of BTC and ETH?"
- "Show me the last 100 1h canLo que la gente pregunta sobre traderspy-mcp
¿Qué es target1m/traderspy-mcp?
+
target1m/traderspy-mcp es mcp servers para el ecosistema de Claude AI. TraderSpy MCP — AI crypto signals, smart money whale positions and live futures market data. Read-only. Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-09-15.
¿Cómo se instala traderspy-mcp?
+
Puedes instalar traderspy-mcp clonando el repositorio (https://github.com/target1m/traderspy-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.
¿Es seguro usar target1m/traderspy-mcp?
+
Nuestro agente de seguridad ha analizado target1m/traderspy-mcp y le ha asignado un Trust Score de 95/100 (tier: Verified). Revisa el desglose completo de comprobaciones superadas y flags en esta página.
¿Quién mantiene target1m/traderspy-mcp?
+
target1m/traderspy-mcp es mantenido por target1m. La última actividad registrada en GitHub es del 2026-09-15, con 0 issues abiertos.
¿Hay alternativas a traderspy-mcp?
+
Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.
Despliega traderspy-mcp en tu cloud
Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.
¿Mantienes este repo? Añade un badge a tu README
Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.
[](https://claudewave.com/repo/target1m-traderspy-mcp)<a href="https://claudewave.com/repo/target1m-traderspy-mcp"><img src="https://claudewave.com/api/badge/target1m-traderspy-mcp" alt="Featured on ClaudeWave: target1m/traderspy-mcp" width="320" height="64" /></a>Más MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl! Don't be shy, join here: https://discord.gg/EMgGbDceNQ
The fastest path to AI-powered full stack observability, even for lean teams.