You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Generate <imgsrc="https://echarts.apache.org/zh/images/favicon.png"height="14"/> [Apache ECharts](https://echarts.apache.org/) 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.
95
+
- Support exporting to `png`, `svg`, and `option` formats, with validation for `ECharts` to facilitate the model's multi-round output of correct syntax and graphics.
96
+
- Lightweight, we can install it with `zero dependence`.
97
+
- Extremely `secure`, fully generated locally, without relying on any remote services.
98
+
99
+
100
+
## 🤖 Usage
101
+
102
+
To use with `Desktop APP`, such as Claude, VSCode, Cline, Cherry Studio, and so on, add the MCP server config below. On Mac system:
103
+
104
+
```json
105
+
{
106
+
"mcpServers": {
107
+
"mcp-echarts": {
108
+
"command": "npx",
109
+
"args": [
110
+
"-y",
111
+
"mcp-echarts"
112
+
]
113
+
}
114
+
}
115
+
}
116
+
```
117
+
118
+
On Window system:
119
+
120
+
```json
121
+
{
122
+
"mcpServers": {
123
+
"mcp-echarts": {
124
+
"command": "cmd",
125
+
"args": [
126
+
"/c",
127
+
"npx",
128
+
"-y",
129
+
"mcp-echarts"
130
+
]
131
+
}
132
+
}
133
+
}
134
+
```
135
+
136
+
Also, you can use it on aliyun, modelscope, glama.ai, smithery.ai or others with HTTP, SSE Protocol.
0 commit comments