Generate Apache ECharts diagram and chart with AI MCP dynamically. Using for chart generation and data analysis.
- Fully support all features and syntax of
ECharts
, include data, style, theme and so on. - Support exporting to
png
,svg
, andoption
formats, with validation forECharts
to facilitate the model's multi-round output of correct syntax and graphics. - MinIO Integration, store charts in
MinIO
object storage and return URLs instead of Base64 data for better performance and sharing capabilities. - Lightweight, we can install it easily with
zero dependence
. - Extremely
secure
, fully generated locally, without relying on any remote services.
To use with Desktop APP
, such as Claude, VSCode, Cline, Cherry Studio, and so on, add the MCP server config below. On Mac system:
{
"mcpServers": {
"mcp-echarts": {
"command": "npx",
"args": [
"-y",
"mcp-echarts"
]
}
}
}
On Window system:
{
"mcpServers": {
"mcp-echarts": {
"command": "cmd",
"args": [
"/c",
"npx",
"-y",
"mcp-echarts"
]
}
}
}
Also, you can use it on modelscope, glama.ai, smithery.ai or others with HTTP, SSE Protocol.
For better performance and sharing capabilities, you can configure MinIO object storage to store chart images as URLs instead of Base64 data.
Note
If MinIO is not configured or unavailable, the system automatically falls back to Base64
data output, ensuring compatibility.
We can Integrate with MinIO
object storage providers below.
- MinIO: High-performance, S3-compatible object storage. Use MinIO JavaScript Client for direct integration.
- Amazon S3: Use AWS SDK with compatible API endpoint.
- Alibaba Cloud OSS: Use the Alibaba Cloud SDK for OSS services.
- Google Cloud Storage: Integrate using Google Cloud SDK or compatible API.
- Microsoft Azure Blob Storage: Use Azure SDK for Blob storage access.
- Tencent Cloud COS: Use the Tencent Cloud SDK for COS integration.
Also, we can setup MinIO locally for free.
-
Install and start MinIO locally:
# Download MinIO (macOS example) brew install minio/stable/minio # Start MinIO server minio server ~/minio-data --console-address :9001
-
Configure environment variables:
# Copy the example environment file cp .env.example .env # Edit .env with your MinIO settings MINIO_ENDPOINT=localhost MINIO_PORT=9000 MINIO_USE_SSL=false MINIO_ACCESS_KEY=minioadmin MINIO_SECRET_KEY=minioadmin MINIO_BUCKET_NAME=mcp-echarts
Install dependencies:
npm install
Build the server:
npm run build
Start the MCP server:
npm run start
- lyw405: Supports
15+
charting MCP tool. #2 - susuperli: Use
MinIO
to save the chart image base64 and return the url. #10 - BQXBQX: Use
@napi-rs/canvas
instead node-canvas. #3 - hustcc: Initial the repo.
MIT@hustcc.