Skip to main content
Glama
Aloysiusjs

tradingview-mcp

by Aloysiusjs

Get quotes

tv_quote

Get current price, change, and volume for one or multiple instruments using bare or exchange-qualified tickers, with automatic fallback to a licensed provider when TradingView is unavailable.

Instructions

Current price, change, and volume for one or more instruments. Accepts bare tickers (AAPL) or qualified ones (NASDAQ:AAPL, BINANCE:BTCUSDT, HKEX:700). Tries TradingView first, then the configured licensed provider. Check the freshness field before calling a price live.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
marketNoTradingView scanner market slug. "global" covers every asset class; narrow to "america", "hongkong", "singapore", "crypto" etc. only if neededglobal
symbolsYesInstruments to quote

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.9/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the behavioral burden. It discloses the TradingView-first fallback to a configured licensed provider and warns about the `freshness` field, which is the key operational caveat for a quote tool. It does not cover rate limits or error behavior, but the most important behavioral trait is present.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Four sentences, each carrying distinct information: return fields, accepted formats, provider routing, and the freshness caveat. Information is front-loaded with the core purpose and there is no filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a read-only quote tool with no output schema, the description adequately names the return fields (price, change, volume, freshness) and the accepted input formats. It does not describe units or error cases, but the schema covers market slugs and the core call contract is clear.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description adds genuine value by explaining accepted ticker formats (bare vs. qualified with exchange prefixes) and the one-or-more-instruments constraint, which enriches the generic schema text for `symbols`.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: 'Current price, change, and volume for one or more instruments.' It clearly conveys the tool's snapshot purpose and gives ticker-format examples, though it never explicitly names or differentiates from sibling tools like tv_history or tv_indicators.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies this is for current quote data and includes a useful caution to check the `freshness` field before treating a price as live. However, it does not explicitly state when to prefer this over tv_history, tv_indicators, or tv_search_symbol, so alternative routing is left to inference.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.