Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/fiale-plus/tradingview-mcp-server/claude-mdgit clone --depth 1 https://github.com/fiale-plus/tradingview-mcp-serverWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/instructions/fiale-plus/tradingview-mcp-server/claude-md)<a href="https://agentmods.dev/instructions/fiale-plus/tradingview-mcp-server/claude-md"><img src="https://agentmods.dev/badge/instructions/fiale-plus/tradingview-mcp-server/claude-md.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.01777 | $0.01777 |
| Opus 5 | $0.00889 | $0.00889 |
| Sonnet 5 | $0.00355 | $0.00355 |
| Haiku 4.5 | $0.00178 | $0.00178 |
Grade A, and why
tradingview-mcp-server CLAUDE.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 148 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Project Overview
TradingView MCP Server is an unofficial Model Context Protocol server and CLI tool that provides access to TradingView's market screener API. It enables AI-powered stock, forex, crypto, and ETF screening through Claude Desktop, Claude Code, or the standalone tradingview-cli command.
Build and Development Commands
npm install # Install dependencies
npm run build # Compile TypeScript to dist/
npm test # Run all tests
npm run test:watch # Run tests in watch mode
npm run dev # Run MCP server directly with tsx (no build step)
npm run dev:cli # Run CLI directly with tsx (no build step)
Running a single test file
npm test -- fields.test.ts
Development workflow
For local development, use npm run dev which runs TypeScript directly via tsx without requiring a build step. After making changes:
- Restart Claude to reload the MCP server (no hot-reload)
- Test via Claude's MCP integration
Architecture
Dual Entry Points
The package has two entry points sharing all core logic:
MCP Server — src/index.ts
Creates the MCP server, registers tools and resources, handles tool calls via stdio. Initializes core components:
TradingViewClient- API clientCache- Response caching (configurable TTL)RateLimiter- Request throttling (configurable RPM)ScreenTool,FieldsTool,PresetsTool- Tool implementations
CLI — src/cli.ts
Standalone CLI using Node's built-in util.parseArgs. Reuses the same tool classes. Output formats: JSON (default), CSV, table. No cache.startCleanup() (CLI is short-lived).
CLI Helpers (src/cli/)
parseArgs.ts- Option configs, input builders, preset mergingformatters.ts- JSON/CSV/table output formattershelp.ts- Help text for all commands
Core Components
API Layer (src/api/)
client.ts- HTTP client for TradingView scanner API endpoints (/global/scan,/forex/scan,/crypto/scan)search.ts- Symbol search via TradingView symbol-search v3 endpointmetainfo.ts- Market metainfo via scanner/metainfoendpointta.ts- Technical analysis summary and ranking via scanner Recommend.All/Other/MA fieldstypes.ts- TypeScript interfaces for API requests/responses
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 6d ago First seen · 148 lines · 1,777 tokens per session scan A d3093878066f
tradingview-mcp-server CLAUDE.md is an instructions file published in the GitHub repository fiale-plus/tradingview-mcp-server (50 stars, last pushed 15d ago), licensed MIT. It adds 1,777 tokens to every session, about $0.0089 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
awesome-quant AGENTS.md
AGENTS.md instructions for wilsonfreitas/awesome-quant, covering agents.md, project overview, architecture, work tracking and planning and commands.
eodhd-claude-skills CLAUDE.md
Instructions for EodHistoricalData/eodhd-claude-skills, covering eodhd claude skills, file structure, key components, development setup and testing.
tiingo-mcp AGENTS.md
Instructions for major7apps/tiingo-mcp, covering agents.md, project map, public contract, operating rules and commands.
tradingview-mcp CLAUDE.md
Claude Code instructions for Weebapp003/tradingview-mcp, covering tradingview mcp — claude instructions, decision tree — which tool when, "what's on my chart right now?", "what levels/lines/labels are showing?" and "give me price data".
openmarkets python-calisthenics.instructions.md
Enforces Object Calisthenics principles for business domain code to ensure clean, maintainable, and robust code in Python.
openmarkets copilot-instructions.md
Copilot instructions for danchev/openmarkets, covering copilot instructions for openmarkets, project overview, key architectural patterns, developer workflows and project conventions.