Native MCP Server

Infrastructure for
Autonomous Trading.

Pazieh exposes its full signal engine — screener, indicators, analysis, and trade setups — as callable tools via the Model Context Protocol. Any AI agent can use them.

What is MCP?

MCP (Model Context Protocol) is an open standard by Anthropic that lets AI agents call external tools natively. Instead of scraping web pages or parsing APIs manually, agents call tools/list to discover capabilities and tools/call to execute them — getting structured, real-time data back.

Pazieh is one of the first financial platforms to implement a native MCP server. This means Claude Desktop, Cursor, Windsurf, and any MCP client can access production-grade technical analysis grounded in live market data.

Quick Start

Add Pazieh to your MCP client config:

claude_desktop_config.json
{
  "mcpServers": {
    "pazieh": {
      "url": "https://pazieh.com/mcp"
    }
  }
}

That's it. No API key required for basic access. Your agent will auto-discover all available tools.

Why Pazieh MCP?

Works with Claude Desktop, Cursor, Windsurf, and any MCP client
Exposes screener, signals, indicators, and analysis as tools
Real-time data — not cached or delayed
No API key needed — zero config for consumers
Stocks + Crypto coverage (NYSE, NASDAQ, Binance)
Full tool documentation included in the MCP manifest

Available Tools

get_price
Current price, daily change %, high/low, and volume for any stock or crypto.
symbol — e.g. AAPL, BTCUSDT, ETHUSDT
technical_analysis
Full TA suite: EMA (13/34/89), RSI, MACD, Bollinger Bands, ADX, OBV, Stochastic RSI, VWAP, Fibonacci, support/resistance, candlestick patterns.
symbol, interval — 1m to 1wk
batch_analysis
Technical analysis for up to 10 symbols in a single call. Perfect for portfolio screening.
symbols — comma-separated, e.g. AAPL,MSFT,GOOGL
full_analysis
Comprehensive analysis with multi-timeframe support, chart patterns, trade setup suggestions (entry/stop/target), and indicator checklist.
symbol, interval, multi_tf — set true for 1wk + 1d + 4h
chart_data
Raw OHLCV candles with S/R levels and detected chart patterns. For custom analysis or charting.
symbol, interval

Example: Ask Claude

You ask Claude
"What are the top 3 bullish setups right now
among AAPL, NVDA, MSFT, GOOGL, TSLA?"
Claude calls Pazieh
pazieh.batch_analysis({
  symbols: "AAPL,NVDA,MSFT,GOOGL,TSLA",
  interval: "1d"
})

→ returns ranked results with full
  signals, grounded in live market data.

Protocol Details

MCP Spec
Endpoint:     POST https://pazieh.com/mcp
Transport:    Streamable HTTP (JSON-RPC 2.0)
Protocol:     MCP 2025-03-26
Discovery:    GET  https://pazieh.com/mcp
Auth:         None required (open access)

The server implements initialize, tools/list, and tools/call methods per the MCP specification.

Start using Pazieh in your AI workflow

Add the server URL to your MCP config and start asking questions about any market.

https://pazieh.com/mcp
MCP ONLINE
5 TOOLS
PROTOCOL 2025-03-26