ECharts
MCP ServerFree** - Generate visual charts using [ECharts](https://echarts.apache.org) with AI MCP dynamically, used for chart generation and data analysis.
Capabilities13 decomposed
mcp-based chart generation tool registration and routing
Medium confidenceImplements a factory pattern using @modelcontextprotocol/sdk to register 17 specialized chart generation tools as MCP-compliant endpoints. The McpServer instance manages tool discovery, input validation schemas, and request routing across multiple transport protocols (stdio, SSE, HTTP). Each tool is registered with Zod-based input schemas that enforce type safety before chart generation pipelines execute.
Uses factory pattern with McpServer class to manage 17 chart tools through a single registration point, with Zod schema validation integrated at the MCP protocol level rather than in individual tool handlers. Supports three transport protocols (stdio, SSE, HTTP) with unified session management.
More modular than monolithic chart APIs because tool registration, validation, and transport are decoupled; enables AI assistants to discover and call chart tools via standard MCP protocol rather than custom REST endpoints
multi-transport protocol bridging (stdio, sse, http)
Medium confidenceImplements three transport protocol handlers that allow the same MCP server instance to serve desktop applications (stdio), web clients (SSE with sessionId), and API services (HTTP with mcp-session-id headers). Each protocol maintains separate session maps for stateful chart generation workflows, with automatic fallback mechanisms for connection failures.
Unified MCP server that dynamically routes requests through three distinct transport protocols with separate session management per protocol, implemented via conditional handlers in src/index.ts. Session maps are protocol-specific (sessionId for SSE, mcp-session-id for HTTP, stateless for stdio).
More flexible than single-protocol servers because it supports desktop (stdio), web (SSE), and API (HTTP) clients from one codebase; eliminates need for separate server instances per client type
batch chart generation with session-based state management
Medium confidenceManages stateful chart generation workflows across multiple requests using session maps (for SSE and HTTP protocols). Sessions maintain context across multiple chart generation calls, enabling workflows where one chart's output feeds into the next chart's input. Session state includes generated chart data, configuration history, and intermediate results.
Implements protocol-specific session maps (sessionId for SSE, mcp-session-id for HTTP) that maintain chart generation context across multiple requests. Session state is managed in src/index.ts with automatic session lifecycle handling per protocol.
More stateful than stateless REST APIs because it maintains context across requests; enables iterative workflows that would require complex client-side state management in stateless architectures
zero-dependency chart rendering with local canvas execution
Medium confidenceRenders charts entirely locally using Node.js canvas and SVG engines without external service dependencies. The rendering pipeline executes ECharts JavaScript in a Node.js context with canvas bindings, eliminating the need for browser instances, external rendering services, or cloud APIs. All rendering happens in-process with no network calls.
Implements fully self-contained chart rendering using Node.js canvas without external service calls. The rendering engine in src/utils/render.ts executes ECharts JavaScript in a Node.js context with canvas bindings, eliminating external dependencies while maintaining compatibility with the full ECharts feature set.
More self-contained than services like Plotly Cloud or QuickChart because rendering happens locally; more reliable than browser-based rendering (Puppeteer) because it avoids browser process management overhead
dynamic chart configuration composition from ai-generated parameters
Medium confidenceAccepts AI-generated chart parameters (data, styling, chart type, axes configuration) and composes them into valid ECharts option objects through a transformation pipeline. The pipeline validates inputs using Zod schemas, applies default styling, merges user-provided options with defaults, and produces complete ECharts configurations ready for rendering.
Implements configuration composition pipeline that transforms AI-generated parameters into valid ECharts options through schema validation and default merging. Each chart tool in src/tools/index.ts handles composition specific to its chart type, enabling flexible AI-driven chart generation.
More flexible than fixed chart templates because it accepts dynamic parameters from AI models; more robust than direct ECharts API usage because it validates inputs and applies sensible defaults
zod-based schema validation for chart inputs
Medium confidenceImplements type-safe input validation using Zod schemas across all 17 chart generation tools. Each tool defines a Zod schema that validates data types, array structures, numeric ranges, and required fields before the data reaches the ECharts rendering pipeline. Validation errors are caught early and returned as structured error messages to the MCP client.
Uses Zod schemas defined in src/utils/schema.ts as the single source of truth for chart input validation, integrated directly into MCP tool definitions. Validation happens at the protocol layer before tool execution, preventing invalid data from reaching the rendering engine.
More robust than regex-based validation because Zod provides structural validation with type inference; catches more error classes (type mismatches, array length violations, numeric ranges) than simple presence checks
financial and trading chart generation (candlestick, ohlc, technical indicators)
Medium confidenceGenerates specialized financial charts including candlestick, OHLC (open-high-low-close), and technical indicator overlays using ECharts' financial chart components. Accepts time-series OHLC data, volume information, and technical indicator arrays (moving averages, Bollinger Bands, RSI), then transforms them into ECharts option objects with proper axis scaling, legend management, and interactive tooltips.
Implements specialized financial chart tools that handle OHLC data transformation and technical indicator overlay composition within the ECharts rendering pipeline. Uses ECharts' native financial chart components rather than custom D3 or Canvas implementations.
More integrated than calling ECharts directly because it abstracts OHLC data transformation and technical indicator composition; faster than web-based charting libraries because rendering happens server-side with Node.js canvas
statistical and analytical chart generation (histograms, box plots, scatter plots)
Medium confidenceGenerates statistical visualization charts including histograms, box plots, scatter plots, and distribution curves. Accepts raw data arrays or pre-computed statistical summaries, performs binning/aggregation if needed, and renders charts with statistical annotations (quartiles, outliers, trend lines). Supports both univariate and bivariate statistical visualizations.
Provides dedicated statistical chart tools that handle data aggregation and statistical annotation rendering within ECharts. Separates statistical computation (caller's responsibility) from visualization (server's responsibility), enabling flexible statistical pipelines.
More specialized than generic line/bar charts because it includes statistical annotation rendering (quartiles, outliers, trend lines); faster than Python-based statistical visualization because rendering happens in Node.js
basic chart type generation (line, bar, pie, area charts)
Medium confidenceGenerates fundamental chart types including line charts, bar charts (vertical and horizontal), pie charts, and area charts. Accepts simple data arrays or category-value pairs, applies styling options (colors, labels, legends), and renders through the ECharts rendering pipeline. Supports stacked variants and multi-series compositions.
Implements simplified interfaces for basic chart types that abstract away ECharts option complexity. Each chart type (line, bar, pie, area) has a dedicated tool with minimal required parameters, making it easy for AI models to generate charts without deep ECharts knowledge.
Simpler to use than raw ECharts API because it provides pre-configured chart templates; faster than web-based charting because rendering happens server-side
server-side chart rendering to png and svg formats
Medium confidenceRenders ECharts option objects to PNG and SVG image formats using Node.js canvas and SVG rendering engines. The rendering pipeline converts ECharts JavaScript options to visual output without requiring a browser, using headless rendering with configurable dimensions, DPI, and color profiles. Supports both raster (PNG) and vector (SVG) output formats.
Implements headless ECharts rendering in Node.js using canvas and SVG engines, avoiding browser overhead. The rendering engine in src/utils/render.ts handles both PNG and SVG output with configurable dimensions and color profiles, integrated into the chart generation pipeline.
Faster than browser-based rendering (Puppeteer, Playwright) because it uses native Node.js canvas; more reliable than external rendering services because rendering happens locally without network latency
minio object storage integration with base64 fallback
Medium confidencePersists generated chart images to MinIO-compatible object storage (S3, MinIO, etc.) with automatic fallback to Base64 encoding when storage is unavailable. The image handler in src/utils/imageHandler.ts detects MinIO configuration, uploads PNG/SVG images to the configured bucket, and returns either object URLs or Base64-encoded data URIs depending on storage availability.
Implements intelligent storage fallback in src/utils/imageHandler.ts that attempts MinIO upload but gracefully degrades to Base64 encoding if storage is unavailable. No external dependencies required; storage is optional and transparent to chart generation tools.
More resilient than MinIO-only solutions because it includes automatic Base64 fallback; more efficient than always using Base64 because it uses URLs when storage is available
echarts option json export for client-side rendering
Medium confidenceExports generated chart configurations as ECharts option JSON objects that can be rendered client-side using the ECharts JavaScript library. The chart generation tools produce ECharts-compatible option objects that include data, styling, axes, legends, and interactive features, enabling clients to render charts in browsers without server-side image generation.
Chart generation tools produce ECharts option objects as a primary output format, enabling both server-side image rendering and client-side interactive rendering from the same configuration. Tools in src/tools/index.ts generate options that are valid ECharts configurations.
More flexible than image-only output because clients can customize and re-render charts; more efficient than server-side rendering for interactive use cases because it offloads rendering to the client
specialized visualization tools (heatmaps, gauges, sankey diagrams)
Medium confidenceGenerates specialized chart types including heatmaps for matrix data, gauge charts for metric visualization, and Sankey diagrams for flow analysis. Each specialized tool handles data transformation specific to its chart type (matrix normalization for heatmaps, metric scaling for gauges, node-link conversion for Sankey) and produces ECharts options with appropriate styling and interactivity.
Implements specialized chart tools that handle domain-specific data transformations (matrix normalization, metric scaling, node-link conversion) before ECharts rendering. Each specialized tool encapsulates the data transformation logic specific to its visualization type.
More specialized than generic chart libraries because each tool handles data transformation specific to its chart type; more integrated than calling ECharts directly because it abstracts away complex option construction
Capabilities are decomposed by AI analysis. Each maps to specific user intents and improves with match feedback.
Related Artifactssharing capabilities
Artifacts that share capabilities with ECharts, ranked by overlap. Discovered automatically through the match graph.
@antv/mcp-server-chart
A Model Context Protocol server for generating charts using AntV. This is a TypeScript-based MCP server that provides chart generation capabilities. It allows you to create various types of charts through MCP tools.
Chart
** - This server offers a wide variety of chart types with comprehensive Zod schema validation for type-safe chart configuration.
Mermaid
** - Generate [mermaid](https://mermaid.js.org/) diagram and chart with AI MCP dynamically.
arcade-mcp
The best way to create, deploy, and share MCP Servers
llm-analysis-assistant
** <img height="12" width="12" src="https://raw.githubusercontent.com/xuzexin-hz/llm-analysis-assistant/refs/heads/main/src/llm_analysis_assistant/pages/html/imgs/favicon.ico" alt="Langfuse Logo" /> - A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and ca
MCP-Framework
** Build MCP servers with elegance and speed in TypeScript. Comes with a CLI to create your project with `mcp create app`. Get started with your first server in under 5 minutes by **[Alex Andru](https://github.com/QuantGeekDev)**
Best For
- ✓AI assistant developers integrating visualization into Claude, VSCode, or custom LLM applications
- ✓Teams building MCP servers that need production-ready tool registration patterns
- ✓Developers requiring multi-transport protocol support (stdio for desktop, SSE/HTTP for web)
- ✓Teams deploying mcp-echarts across multiple client environments (desktop, web, mobile)
- ✓Developers building AI assistants that need to work in Claude, VSCode, and custom web UIs
- ✓Organizations requiring both synchronous REST APIs and streaming MCP connections
- ✓Interactive chart generation workflows in web applications
- ✓Multi-step data analysis pipelines where charts depend on previous results
Known Limitations
- ⚠Tool registration is static at server startup — dynamic tool addition requires server restart
- ⚠Session management for SSE and HTTP protocols relies on in-memory maps, not persistent storage
- ⚠No built-in authentication or rate limiting at the MCP protocol layer
- ⚠Session state is in-memory only — server restart loses all active sessions
- ⚠SSE connections require persistent TCP connections, not suitable for high-latency networks
- ⚠HTTP protocol requires mcp-session-id header management on client side
Requirements
Input / Output
UnfragileRank
UnfragileRank is computed from adoption signals, documentation quality, ecosystem connectivity, match graph feedback, and freshness. No artifact can pay for a higher rank.
About
** - Generate visual charts using [ECharts](https://echarts.apache.org) with AI MCP dynamically, used for chart generation and data analysis.
Categories
Alternatives to ECharts
Are you the builder of ECharts?
Claim this artifact to get a verified badge, access match analytics, see which intents users search for, and manage your listing.
Get the weekly brief
New tools, rising stars, and what's actually worth your time. No spam.
Data Sources
Looking for something else?
Search →