# Does TradingView have an MCP server?

**Sort of — Community only.** TradingView does not maintain an official MCP server. Community-built servers exist.

## Facts

- Verdict: Community only (Sort of)
- Access: Local server — Runs on your machine over stdio, launched by your MCP client.
- Repository: [atilaahmettaner/tradingview-mcp](https://github.com/atilaahmettaner/tradingview-mcp) — ★ 3.9k, last push 2026-08-07, MIT
- Maintainer: Ahmet Taner Atila
- Language: Python
- Category: [Finance & Fintech](https://mcpyet.com/category/finance-fintech/)
- Verified against vendor docs: 2026-08-10
- GitHub data refreshed: 2026-08-11 (re-checked every 6 hours)

## What it does

> TradingView MCP server — real-time market data, technical analysis, screeners & backtesting for Claude, ChatGPT, Cursor & any MCP client. Stocks, crypto, forex & futures across global exchanges. Hosted or self-host.
> — how [atilaahmettaner/tradingview-mcp](https://github.com/atilaahmettaner/tradingview-mcp) describes itself

Project site: <https://pro.cryptosieve.com>

## The receipts

- **Top community server:** [atilaahmettaner/tradingview-mcp](https://github.com/atilaahmettaner/tradingview-mcp) — ★ 3.9k, pushed 2026-08-07, MIT (active)

## How to connect it

Runs on your machine over stdio, launched by your MCP client.

### Claude Code

```sh
claude mcp add tradingview -- npx -y <package-from-readme>
```

Swap in the exact package and flags from the repo README — most servers need an API key passed as an environment variable. Add `--scope user` to make it available in every project.

### Claude Desktop

Open **Settings → Developer → Edit Config** and add the server to `claude_desktop_config.json`, then restart Claude Desktop:

```json
{
  "mcpServers": {
    "tradingview": {
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ],
      "env": {
        "API_KEY": "…"
      }
    }
  }
}
```

### Cursor

Add to `.cursor/mcp.json` in your project, or `~/.cursor/mcp.json` for every project:

```json
{
  "mcpServers": {
    "tradingview": {
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ],
      "env": {
        "API_KEY": "…"
      }
    }
  }
}
```

### VS Code

Add to `.vscode/mcp.json`, then pick the server from Copilot's agent-mode tools menu:

```json
{
  "servers": {
    "tradingview": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "<package-from-readme>"
      ]
    }
  }
}
```

### ChatGPT

ChatGPT connects to **remote servers only**, and this one runs on your machine. Either expose it through an MCP gateway that gives it a public URL, or use a client with native local support (Claude or Cursor).

## Before you connect this

A community server is unaudited third-party code that will hold your TradingView API credentials and see whatever data they unlock. Independent research puts SSRF vulnerabilities in roughly a third of public MCP servers, and 41% ship with no authentication at all.

- Read the source before running it — especially any network calls it makes.
- Check who maintains it and whether commits are recent (this one: last push 2026-08-07).
- Issue a scoped, revocable API key rather than an account-wide token.
- Prefer read-only credentials until you trust it with writes.

## How we know

No official MCP from TradingView — tradingview.com carries only MCP news about other companies. Strongest community server: atilaahmettaner/tradingview-mcp (~3.9k stars, active), using public data endpoints.

- GitHub data refreshed 2026-08-11, then every 6 hours.
- Vendor docs verified on 2026-08-10.
- Corrections: hello@mcpyet.com.

## Also in Finance & Fintech

- [Robinhood](https://mcpyet.com/mcp/robinhood.md) — Official (Yes)
- [Monarch Money](https://mcpyet.com/mcp/monarch-money.md) — Official (Yes)
- [Stripe](https://mcpyet.com/mcp/stripe.md) — Official (Yes)
- [PayPal](https://mcpyet.com/mcp/paypal.md) — Official (Yes)
- [Base](https://mcpyet.com/mcp/base.md) — Official (Yes)
- [Alchemy](https://mcpyet.com/mcp/alchemy.md) — Official (Yes)

---

Source: https://mcpyet.com/mcp/tradingview/ — data refreshed 2026-08-11
