tradinview-mcp
Provides access to Binance public market data (crypto spot) for quotes, OHLCV, and symbol search.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@tradinview-mcpsearch for AAPL symbol"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
tradinview-mcp
Provider-based TradingView-style market research and charting MCP server.
This project does not scrape TradingView, does not use undocumented TradingView APIs, and does not execute trades. It exposes MCP tools for market-data research, indicator calculation, watchlists, and local chart HTML rendering.
Quick Start
pnpm install
cp .env.example .env
pnpm devThe default provider is mock, so the server works without API keys.
For the ChatGPT/Vercel-style remote endpoint locally:
pnpm dev:httpEndpoint:
http://localhost:3000/api/mcpRelated MCP server: TradingView MCP Jackson
Real Provider Mode
mock is the safe offline default. To use real public crypto market data, enable Binance:
ENABLE_BINANCE=true
DEFAULT_PROVIDER=binance
BINANCE_BASE_URL=https://data-api.binance.visionTo make sure the server never starts accidentally with mock data:
REQUIRE_REAL_PROVIDER=trueThen run:
pnpm devUse the verify_provider MCP tool with:
{ "provider": "binance", "symbol": "BTCUSDT", "interval": "1h" }That tool performs real quote and OHLCV calls and returns realProvider: true when the selected provider is not mock.
MCP Client Config
After building:
pnpm buildAdd a stdio MCP server entry similar to:
{
"mcpServers": {
"tradinview-mcp": {
"command": "node",
"args": ["C:/Users/mobol/Downloads/tradinview-mcp/dist/index.js"],
"env": {
"DEFAULT_PROVIDER": "mock"
}
}
}
}ChatGPT via Vercel
Deploy the remote MCP endpoint:
npx vercel --prodSet Vercel env vars for real Binance data:
ENABLE_BINANCE=true
DEFAULT_PROVIDER=binance
REQUIRE_REAL_PROVIDER=true
BINANCE_BASE_URL=https://data-api.binance.vision
WATCHLIST_PATH=/tmp/watchlist.jsonThen connect ChatGPT Developer Mode to:
https://your-project.vercel.app/api/mcpSee Setup for the full ChatGPT connection flow.
For development, use:
{
"mcpServers": {
"tradinview-mcp": {
"command": "pnpm",
"args": ["dev"],
"cwd": "C:/Users/mobol/Downloads/tradinview-mcp"
}
}
}Tools
search_symbols: search configured providers.get_quote: get latest normalized quote.get_ohlcv: get OHLCV bars.calculate_indicators: calculate SMA, EMA, RSI, MACD, and Bollinger Bands.render_chart_html: render safe local Lightweight Charts HTML from supplied bars.get_watchlist: read local watchlist.add_to_watchlist: add or update a watchlist symbol.remove_from_watchlist: remove a watchlist symbol.verify_provider: perform a provider quote/OHLCV smoke check.
Example tool inputs:
{ "query": "BTC", "provider": "mock" }{ "symbol": "BTCUSDT", "interval": "1h", "limit": 100, "provider": "mock" }{
"bars": [
{ "time": "2026-06-23T00:00:00.000Z", "open": 100, "high": 105, "low": 99, "close": 103, "volume": 1000 }
],
"indicators": [{ "type": "SMA", "period": 20 }]
}Resources
market://schemamarket://provider-statusmarket://compliance-notes
Prompts
analyse_symbolcompare_assetsbuild_watchlist
Optional Binance Provider
Binance is disabled unless configured:
ENABLE_BINANCE=true
DEFAULT_PROVIDER=binanceOnly public crypto spot market data endpoints are used. The default Binance URL is https://data-api.binance.vision, Binance's market-data-only base endpoint.
Verification
pnpm typecheck
pnpm test
pnpm buildRun the live provider smoke test only when you want an internet-backed check:
pnpm test:liveMore details:
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityBmaintenanceA modular MCP server providing 64 tools across 13 modules for real-time stock and crypto market data, including scanning, technical analysis, options flow, insider trades, and personalized watchlists.Last updated391946MIT
- Flicense-qualityCmaintenanceAn MCP server that connects to TradingView Desktop via Chrome DevTools Protocol, enabling chart control, Pine Script development, and a morning brief workflow with AI-driven analysis.Last updated191
- FlicenseAqualityCmaintenanceAn MCP server providing Model-usable tools to fetch real-time quotes, historical price charts, fundamental datasets, SEC filings, economic/earnings calendars, option chains, and corporate bond data from TradingView.Last updated21
- Flicense-qualityDmaintenanceA Model Context Protocol (MCP) server that lets AI assistants interact with TradingView for real-time quotes, historical OHLCV data, screener, alerts, watchlists, news, chart layouts, Pine scripts, and more. Connect it to Claude Desktop, Cursor, or any MCP-compatible client to control TradingView via natural language.Last updated1915
Related MCP Connectors
Open-source MCP server for Zerodha Kite Connect. Portfolio, market data, backtesting, alerts.
Hosted MCP for stocks, options, Greeks, brokers, order previews, alerts, and workflows.
Multi-tenant FastMCP server for Charles Schwab brokerage data, monetized via DPYC Tollbooth
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Ham12-3/tradinview-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server