🔌 MCP Tools — Live

Model Context Protocol Tools

65 tools across 3 MCP servers — technical analysis, web search, and 23 domain experts. Connect Claude Desktop, Cursor, Claude Code CLI, or any MCP-compatible client with a single config entry.

65
Total Tools
3
MCP Servers
23
Domain Experts
63
TA Indicators
✅ Protocol Compliance
MCP 2025-11-25 (legacy) MCP 2026-07-28 (modern) mcp==2.0.0 Dual-protocol · PASS=59 FAIL=0
The 3 MCP Servers
63 tools

📊 Technical Analysis MCP

RSI, MACD, SMA/EMA, Bollinger Bands, momentum, volume, trend signals — multi-timeframe across any symbol.

ta-mcp.tradevoicelab.com
1 tool

🔍 Search MCP

Web search, news, financial research via SearXNG — returns structured results your agent can reason over.

search-mcp.tradevoicelab.com
1 tool (routes to 23)

🤖 Expert MCP

One tool that auto-routes to any of 23 domain experts — risk analyst, economist, forecaster, news watcher, and more.

experts-mcp.tradevoicelab.com
Setup
⚠️ Requires a free developer account. Register here — activation is instant via email.
🔒 How MCP authentication works
  1. Add the MCP server URL to your client config using mcp-remote@latest
  2. On first use, your client opens a browser window automatically
  3. You log in with your TradeVoiceLab account at auth.tradevoicelab.com
  4. Cloudflare Access issues a short-lived JWT — stored locally by mcp-remote
  5. All subsequent calls are silent for 24 hours — no repeated logins
All traffic is TLS-encrypted through Cloudflare. Your password is never sent to the MCP server — only the JWT.

A browser window opens once to log in with your TradeVoice account. After that, stays silent for 24 hours.

{
  "mcpServers": {
    "tradevoice": {
      "command": "npx",
      "args": ["-y", "mcp-remote@latest", "https://mcp.tradevoicelab.com/mcp"],
      "env": { "MCP_REMOTE_AUTH": "oauth" }
    }
  }
}
claude mcp add tradevoice --transport http https://mcp.tradevoicelab.com/mcp
# Browser opens once for OAuth login, then silent for 24h

For automated pipelines without a browser. Use your CF Access service token from the Developer Portal — generate it once, use it forever.

from mcp import ClientSession
from mcp.client.streamable_http import streamablehttp_client

headers = {
    "CF-Access-Client-Id":     "your-client-id",
    "CF-Access-Client-Secret": "your-client-secret",
}

async with streamablehttp_client(
        "https://ta-mcp1.tradevoicelab.com/mcp", headers=headers) as (r, w, _):
    async with ClientSession(r, w) as session:
        await session.initialize()
        result = await session.call_tool("ta_trend_signals", {"symbol": "NVDA"})
        print(result.content[0].text)

Pinned node URLs (bypass LB for stable sessions): ta-mcp1 search-mcp1 experts-mcp1 (.tradevoicelab.com/mcp)

Technical Analysis Tool Groups
Trend Signals
SMA, EMA crossovers, MACD signal line, ADX trend strength
Momentum
RSI, Stochastic %K/%D, Williams %R, CCI
Volatility
Bollinger Bands, ATR, Keltner Channels, historical vol
Volume
OBV, CMF, Volume Profile, VWAP, A/D Line
Multi-timeframe
1m, 5m, 15m, 1h, 4h, daily — any combination
Pattern Detection
20+ candlestick patterns, support/resistance, chart patterns
Composite Scores
Buy/sell scores 0–100, combined signal strength
Market Indexes
S&P 500, Nasdaq, Dow, sector ETF performance

Start using MCP Tools today

Free developer account — activation link sent instantly to your email.