Frictionless chart-building with hosted amCharts MCP server
The always up-to-date version of the amCharts 5 MCP is available as a hosted server.
Easy to add
Just point your AI client at our hosted endpoint. No package to install, and it always runs the latest version.
https://mcp.amcharts.com/mcp
Claude Code — one command:
claude mcp add --transport http amcharts5 https://mcp.amcharts.com/mcp
Claude Desktop / claude.ai — go to Settings → Connectors → Add custom connector, then paste https://mcp.amcharts.com/mcp.
ChatGPT (Plus/Pro/Enterprise, with connectors/developer mode enabled) — Settings → Connectors → Add custom connector, then paste the same URL.
Cursor — add to .cursor/mcp.json:
{
"mcpServers": {
"amcharts5": {
"url": "https://mcp.amcharts.com/mcp"
}
}
}
Windsurf — add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"amcharts5": {
"serverUrl": "https://mcp.amcharts.com/mcp"
}
}
}
VS Code + GitHub Copilot — add to .vscode/mcp.json:
{
"servers": {
"amcharts5": {
"type": "http",
"url": "https://mcp.amcharts.com/mcp"
}
}
}
Tools that only support local (stdio) servers (e.g. Zed, Continue, Amazon Q) — bridge to the hosted URL with mcp-remote:
{
"mcpServers": {
"amcharts5": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.amcharts.com/mcp"]
}
}
}