Skip to main content
Glama
aidenhecker

claude-tradingview-mcp

by aidenhecker

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tasks
{
  "list": {},
  "cancel": {},
  "requests": {
    "tools": {
      "call": {}
    },
    "prompts": {
      "get": {}
    },
    "resources": {
      "read": {}
    }
  }
}
tools
{
  "listChanged": true
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
get_symbolA

Read the symbol + timeframe currently charted in the TradingView desktop app.

Returns {symbol, exchange, interval, raw_title}. On a permission/parse failure returns {error, hint, raw_title} — then just ask the user for the ticker.

get_watchlistA

Read the symbols TradingView currently exposes (one per open chart window).

Returns {symbols: [{symbol, exchange, interval, raw_title}], count}. Read-only.

screenshot_chartA

Capture ONLY the TradingView window and return a base64 PNG of your chart.

The chart stays on your machine: the file is deleted from disk immediately after encoding, and this tool uploads nothing. Returns {format, base64, bytes, region, symbol, interval, note} or {error, hint}.

extract_indicatorsA

Compute a technical-indicator bundle for the charted (or given) symbol.

Reads PUBLIC historical candles (yfinance) and computes RSI, EMA20/50/200, MACD, ATR, Bollinger, VWAP, Supertrend — plus plain-language signals and a verdict. This reads market data only; it cannot and will not place a trade. If symbol/interval are omitted, they're read from the current TradingView window.

read_alertsA

READ-ONLY, best-effort read of your visible TradingView alert configs.

Returns {alerts, readable, note}. This tool can NEVER create, modify, arm, or delete an alert — there is no such code path.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription
currentThe current TradingView context as a resource: charted symbol + open windows. Read-only snapshot for clients that prefer a resource over a tool call.

TDQS

A4.4/5.0

Scored across 5 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: extract_indicators computes technical indicators, get_symbol reads the current symbol, get_watchlist lists all open chart symbols, read_alerts reads alert configs, and screenshot_chart captures an image. No overlapping functionality.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern using snake_case (extract_indicators, get_symbol, get_watchlist, read_alerts, screenshot_chart). The pattern is uniform and predictable.

Tool Count5/5

Five tools is well-scoped for a TradingView-focused server. Each tool serves a distinct function without unnecessary bloat or missing essentials for the declared read-only analysis purpose.

Completeness4/5

The tool set covers core needs: reading symbols, watchlist, alerts, indicators, and screenshots. However, a tool for raw historical price data (beyond indicators) or a search tool for symbols is absent, though extract_indicators partially fills that gap.

Maintenance

ActivityInactive
ResponsivenessNo issues