Setup
- After signup you'll download the app.
- Add the AI connector:
true one-clickClaude DesktopDownload the installer and double-click. No terminal, no config.
Download and Install one commandCodexPaste one command in your terminal.
codex mcp add mylinedchart -- npx -y @mylinedchart/mcp-chart-context
Full steps one clickCursorIn the app, click Add to Cursor. Cursor opens and asks to add the server.
or add the config to ~/.cursor/mcp.json
Full steps one clickGitHub Copilot (VS Code)In the app, click Add to VS Code. VS Code opens and adds MyLinedChart to Copilot.
or add the config to .vscode/mcp.json
Why the config key differs The MCP server ships as the @mylinedchart/mcp-chart-context npm package. For any other config-based MCP client, add:
{ "mcpServers": { "mylinedchart": { "command": "npx", "args": ["-y", "@mylinedchart/mcp-chart-context"] } } }VS Code is the exception. Its .vscode/mcp.json wraps the same server under servers, not mcpServers. Paste the block above into VS Code and it parses without complaint, then ignores the server:
{ "servers": { "mylinedchart": { "command": "npx", "args": ["-y", "@mylinedchart/mcp-chart-context"] } } }Listed on the official Model Context Protocol registry, com.mylinedchart/chart-context
Then just say…
Draw & edit the chartThe write tool. Draws the full toolkit (trend lines, rays, segments, Fibonacci, rectangles, text notes), configures built-in or custom formula indicators, or sets the symbol/timeframe/chart type/range/session. Every change confirmation-gated. Never an order.
Export dataExport to Excel (XLSX) or CSV for your review and journaling, or JSON for automation or workflow integration.
Get chart contextSymbol, timeframe, range, provider, connection state, and candle/drawing/indicator counts.
Pull candlesUp to 2,000 recent OHLCV bars for the current chart.
Get drawingsAll drawings and price levels on the current symbol.
Get indicatorsConfigured indicators: name, parameters, placement, visibility.
Check connection statusIBKR connector + market-data status. Never exposes credentials.
Pull tradesThe session's executed fills as chart markers (IBKR).
Get all-symbol drawingsDrawing counts and labels across every symbol in the workspace.
Take a screenshotA PNG of the live chart view, exactly as rendered.