LightWeightChartsMCP
Provides 6 MCP tools for semantic search, JS/TS code validation, and template generation based on TradingView Lightweight Charts documentation.
README
LightWeightChartsMCP
Complete TradingView Lightweight Charts reference documentation MCP server with 6 tools for semantic search, JS/TS code validation, and template generation.
Quick Start | Tools | Configuration | Development
pip install lwcmcp
lwcmcp
That's it. On first run, the server auto-builds the ChromaDB vector store from shipped JSON data (takes 30-60 seconds for embedding model download + indexing). Subsequent runs start instantly.
What you get:
- 6 MCP tools for Lightweight Charts docs lookup, JS/TS code validation, and template generation
- ~1617 entries indexed in a local ChromaDB vector store (100% offline)
- Sub-millisecond hot cache for priority lookups
- Regex-based JS/TS validator (no Node.js runtime required)
- Works with Claude Desktop, Cursor, Windsurf, OpenCode, and any MCP client
What you need:
- Python 3.10+
- Any MCP-compatible AI client
Features
- 6 tools: lookup, search, browse, validate, repair, scaffold
- 1 resource:
lwc://stats - 100% local: ChromaDB vector store, no network calls at runtime
- Fast: Hot cache for instant lookups, name index for fuzzy matching, semantic search (warm)
- 5 versions: 3.8, 4.0, 4.1, 4.2, 5.0 plus tutorials and framework integrations
- Validator: Regex-based JS/TS validation (no Node.js runtime required)
- 7 templates: basic_chart, realtime_updates, react_integration, vue_integration, web_components, custom_styling, multi_series
- Version filtering: Every tool accepts
versionparam to filter by LWC version - Production-ready: Health endpoint, circuit breakers, error masking, response capping, response caching middleware
Coverage
- LWC API: functions, interfaces, enumerations, type-aliases, variables (all 5 versions)
- Guides: getting-started, series-types, price-scale, time-scale, time-zones, plugins, migrations, android, ios, release-notes
- Tutorials: customization, a11y, react, vuejs, webcomponents, how-to, demos
- Total: ~1617 entries across 5 versions + tutorials
- ChromaDB: all entries indexed (JSON = ChromaDB, zero dedup loss)
Setup
pip install lwcmcp
Or from source:
git clone https://github.com/TheFractalyst/LightWeightChartsMCP.git
cd LightWeightChartsMCP
pip install -e ".[dev]"
Run the server
# stdio (for MCP clients like Claude, Cursor, opencode)
lwcmcp
# SSE (HTTP)
lwcmcp --transport sse --port 8080
# Build ChromaDB manually (auto-builds on first run otherwise)
lwcmcp build
MCP Client Configuration
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS)
or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"lightweightchartsmcp": {
"command": "lwcmcp",
"transport": "stdio"
}
}
}
Cursor / Windsurf / OpenCode
Add to your project's .mcp.json or global MCP config:
{
"mcpServers": {
"lightweightchartsmcp": {
"command": "lwcmcp",
"transport": "stdio"
}
}
}
SSE (HTTP)
lwcmcp --transport sse --port 8080
Connect to http://localhost:8080.
Tools
+--------------+-----------+------------------------------------------+
| Tool | Type | Description |
+--------------+-----------+------------------------------------------+
| lwc_lookup | read-only | Exact name lookup with fuzzy fallback |
| lwc_search | read-only | Semantic search across all entries |
| lwc_browse | read-only | List namespace members |
| lwc_validate | read-write| Validate JS/TS for Lightweight Charts |
| lwc_repair | read-write| Fix common Lightweight Charts issues |
| lwc_scaffold | read-write| Generate chart template (7 kinds) |
+--------------+-----------+------------------------------------------+
+----------------+----------------------------------------------------+
| Tool | Signature |
+----------------+----------------------------------------------------+
| lwc_lookup | (name, kind?, version?) |
| lwc_search | (query, category?, namespace?, version?, n_results?)|
| lwc_browse | (namespace, category?, style?, version?) |
| lwc_validate | (code?, file_path?, file_content?, version?) |
| lwc_repair | (code, context, version?) |
| lwc_scaffold | (kind, name, description?, version?) |
+----------------+----------------------------------------------------+
Version Filtering
Every tool accepts an optional version parameter:
"3.8","4.0","4.1","4.2","5.0"- filter to specific versionNone(default) - search across all versions (prefers latest 5.0)
Configuration
+------------------------+------------------+--------------------------------------------+
| Env Var | Default | Description |
+------------------------+------------------+--------------------------------------------+
| TRANSPORT | stdio | Transport: stdio or sse |
| PORT | 8080 | Port for SSE transport |
| LWC_DB_PATH | ~/.lwc_mcp/db | ChromaDB path |
| LWC_COLLECTION | lwc_reference | ChromaDB collection name |
| LWC_EMBED_MODEL | all-MiniLM-L6-v2 | Sentence transformer model |
| LWC_MAX_RESULTS | 100 | Max results returned |
| VALIDATION_CACHE_TTL | 300 | Validation cache TTL (seconds) |
| VALIDATION_CACHE_SIZE | 500 | Validation cache max entries |
| LWC_INDEX_BATCH_SIZE | 25 | Indexing batch size |
| LAZY_MODEL | (empty) | Set to 1/true to defer model loading |
| LOG_DIR | ~/.lwc_mcp/logs | Log directory (SSE transport) |
| LOG_LEVEL | INFO | Logging level |
+------------------------+------------------+--------------------------------------------+
Namespaces
API Namespaces
+----------------+----------------------------------------------+
| Namespace | Description |
+----------------+----------------------------------------------+
| enumerations | Enums (LineStyle, CrosshairMode, etc.) |
| functions | Functions (createChart, addSeries, etc.) |
| interfaces | Interfaces (IChartApi, ISeriesApi, etc.) |
| type-aliases | Type aliases (SeriesType, Time, etc.) |
| variables | Variables and constants |
+----------------+----------------------------------------------+
Guide Namespaces
+------------------+------------------------------------------+
| Namespace | Description |
+------------------+------------------------------------------+
| getting-started | Getting started guides |
| android | Android platform integration |
| ios | iOS platform integration |
| price-scale | Price scale configuration |
| release-notes | Version release notes |
| series-types | Series types (candlestick, line, etc.) |
| time-scale | Time scale configuration |
| time-zones | Time zone handling |
| migrations | Version migration guides |
| plugins | Plugin system (v4.1+) |
+------------------+------------------------------------------+
Tutorial Namespaces
+----------------+----------------------------------------------+
| Namespace | Description |
+----------------+----------------------------------------------+
| customization | Chart customization tutorials |
| a11y | Accessibility tutorials |
| react | React framework integration |
| vuejs | Vue.js framework integration |
| webcomponents | Web Components integration |
| how-to | How-to guides |
| demos | Demo applications |
+----------------+----------------------------------------------+
Scaffold Templates (7 kinds)
+--------------------+----------------------------------------------+
| Kind | Description |
+--------------------+----------------------------------------------+
| basic_chart | Basic chart with createChart + setData |
| realtime_updates | Real-time data streaming with series.update |
| react_integration | React component with useRef + useEffect |
| vue_integration | Vue.js component with ref |
| web_components | Web Components custom element wrapper |
| custom_styling | Custom chart and series options/styling |
| multi_series | Multiple series (candlestick + volume) |
+--------------------+----------------------------------------------+
Development
ruff check . --line-length 120 # lint
pytest tests/ -v # test
Architecture
- FastMCP 3.4 with FileSystemProvider for auto-discovery
- ChromaDB vector store (cosine, all-MiniLM-L6-v2, 384-dim)
- 3 composable lifespans: db | model | cache
- Auto-build ChromaDB from shipped JSON on first run
- Response caching middleware (lookup/browse 1h, search 5m)
- Response limiting middleware (80KB cap)
- Circuit breaker on validator and ChromaDB
- Hot cache for fast lookups
- Error masking (no internal details leaked)
- Health endpoint at
/health
Database
- ~1617 entries across 5 versions (3.8, 4.0, 4.1, 4.2, 5.0) + tutorials
- Auto-built on first run from shipped JSON data (1.5MB)
- Stored at
~/.lwc_mcp/db(survives project updates)
To rebuild the database:
lwcmcp build
Data Pipeline
pipeline/scrape_lwc.py- Direct HTTP scraper for Lightweight Charts docs sitemap (github.io, no ScraperAPI needed)pipeline/merge_and_index.py- Merge + index into ChromaDB
Re-scrape from TradingView
pip install -e ".[pipeline]"
python pipeline/scrape_lwc.py
python pipeline/merge_and_index.py --reset
Tech Stack
- FastMCP 3.4 - MCP server framework with FileSystemProvider auto-discovery
- ChromaDB - Local vector database for semantic search
- SentenceTransformers -
all-MiniLM-L6-v2embedding model (384-dim) - RapidFuzz - Fuzzy string matching for name lookups
- Loguru - Structured logging with daily rotation (SSE mode)
Links
- fractalyst.dev - Author homepage
- TradingView - Public PineScript indicators
- @TheFractalyst - X / Twitter
License
MIT - see LICENSE
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。