Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

A TradingView-style market research and charting MCP server that provides tools for market data, indicators, watchlists, and local HTML chart rendering without scraping TradingView.

README.md

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 dev

The default provider is mock, so the server works without API keys.

For the ChatGPT/Vercel-style remote endpoint locally:

pnpm dev:http

Endpoint:

http://localhost:3000/api/mcp

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.vision

To make sure the server never starts accidentally with mock data:

REQUIRE_REAL_PROVIDER=true

Then run:

pnpm dev

Use 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 build

Add 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 --prod

Set 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.json

Then connect ChatGPT Developer Mode to:

https://your-project.vercel.app/api/mcp

See 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://schema
  • market://provider-status
  • market://compliance-notes

Prompts

  • analyse_symbol
  • compare_assets
  • build_watchlist

Optional Binance Provider

Binance is disabled unless configured:

ENABLE_BINANCE=true
DEFAULT_PROVIDER=binance

Only 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 build

Run the live provider smoke test only when you want an internet-backed check:

pnpm test:live

More details:

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Search servers.