vvk-charts-mcp
Provides chart generation capabilities using Plotly, including line, bar, pie, scatter, area charts and combined dashboards with customizable themes and export to PNG, SVG, or base64.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@vvk-charts-mcpCreate a line chart of monthly sales for the last quarter."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
vvk-charts-mcp
Documentation language:
English:
README.mdRussian:
README_ru.md
Modern Python MCP server for rendering charts and diagrams (line, bar, pie, scatter, area, and combined dashboard) with customizable themes and export to PNG/SVG/base64.
Table of contents
Related MCP server: mcp-plots
Features
MCP tools for single charts and mixed dashboards.
Terminal chart tools with ANSI rendering and monochrome fallback.
Modern Plotly styling with full theme customization.
Works with multi-series and larger datasets.
Export formats:
png,svg,base64.Interactive CLI test client with predefined templates.
Quick start
Install from GitHub with uvx:
uvx install git+https://github.com/valderan/vvk-charts-mcp.gitRun MCP server:
uvx run vvk-charts-mcpRun interactive test client:
uvx run vvk-charts-cliThe CLI asks what to draw, where to save, output format, and image size.
Tip: set output mode to terminal in vvk-charts-cli to preview console dashboards.
MCP tools
Tool | Purpose |
| Lists available image/terminal themes |
| Trends over time |
| Category comparison |
| Part-to-whole split |
| Correlation and bubble plots |
| Stacked/cumulative composition |
| Multiple chart types in one image |
| ANSI/mono chart output for terminal clients |
| Multi-panel terminal dashboard as plain text |
Common options supported by all tools:
theme_preset,theme,title,width,heightformat(png,svg,base64)filename,save_to_disk
Image tools always return chat preview (ImageContent).
To save files, set save_to_disk: true and configure OUTPUT_DIR in MCP env.
Theme presets
Use list_theme_presets to get all available theme names at runtime.
Image theme presets:
clean_light(default)dark_corporatepastel_startupmedical_monitor
Terminal theme presets:
dark_corporate_cli(default)pastel_startup_cli
Example request:
{
"tool": "list_theme_presets",
"arguments": {}
}Combined dashboard payload example
{
"title": "Marketing Dashboard",
"rows": 1,
"cols": 2,
"theme_preset": "dark_corporate",
"format": "png",
"save_to_disk": true,
"filename": "combined_dashboard",
"panels": [
{
"type": "line",
"row": 1,
"col": 1,
"title": "Revenue Trend",
"x_label": "Month",
"y_label": "k USD",
"data": [
{
"name": "Revenue",
"x": ["Jan", "Feb", "Mar", "Apr"],
"y": [120, 132, 148, 160]
}
],
"options": {
"line_shape": "spline"
}
},
{
"type": "pie",
"row": 1,
"col": 2,
"title": "Budget Split",
"data": [
{
"labels": ["Search", "Social", "Email"],
"values": [45, 35, 20]
}
],
"options": {
"hole": 0.45
}
}
]
}Terminal chart payload example
{
"tool": "create_terminal_chart",
"arguments": {
"type": "line",
"title": "Revenue Trend (CLI)",
"x_label": "Month",
"y_label": "k USD",
"theme": "dark_corporate_cli",
"use_color": true,
"force_mono": false,
"raw_output": true,
"data": [
{
"name": "Revenue",
"x": ["Jan", "Feb", "Mar", "Apr", "May"],
"y": [120, 132, 148, 160, 178]
}
]
}
}raw_output: true is recommended for terminal clients: tool returns only chart text (no JSON wrapper).
Image save behavior (OUTPUT_DIR)
save_to_disk: false(default): no file is written, preview is returned to chat.save_to_disk: trueandOUTPUT_DIRis set: file is saved only intoOUTPUT_DIR.save_to_disk: trueandOUTPUT_DIRis not set: no error, preview only (saved=falsein metadata).output_pathis not supported.
Example MCP config fragment:
{
"mcp": {
"vvkcharts": {
"type": "local",
"enabled": true,
"command": ["uvx", "--from", "git+https://github.com/valderan/vvk-charts-mcp.git", "vvk-charts-mcp"],
"env": {
"OUTPUT_DIR": "./output"
}
}
}
}Demo gallery
AI presets (skill and agent)
Repository includes reusable AI presets in ai/:
ai/vvk-charts-skill.md- skill instructions for chart payload building.ai/vvk-charts-agent.md- chart-specialized subagent profile.
Use whichever workflow is more convenient.
OpenCode setup (detailed)
1) Add this MCP server
Create or edit opencode.json:
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"vvkcharts": {
"type": "local",
"enabled": true,
"command": [
"uvx",
"--from",
"git+https://github.com/valderan/vvk-charts-mcp.git",
"vvk-charts-mcp"
]
}
}
}2) Install as an OpenCode skill
mkdir -p .opencode/skills/vvk-charts-mcp
cp ai/vvk-charts-skill.md .opencode/skills/vvk-charts-mcp/SKILL.md3) Install as an OpenCode agent
mkdir -p .opencode/agents
cp ai/vvk-charts-agent.md .opencode/agents/vvk-charts.md4) Verify
Start
opencodein this repository.Ensure
vvkcharts_*tools are visible.Test prompt:
Build a monthly revenue line chart and save as png in ./output using vvkcharts.
References:
Codex setup (detailed)
Codex-compatible clients may vary, but this flow works in MCP-enabled environments.
1) Register MCP server
uvx --from git+https://github.com/valderan/vvk-charts-mcp.git vvk-charts-mcpTypical JSON shape used by many clients:
{
"mcpServers": {
"vvkcharts": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/valderan/vvk-charts-mcp.git",
"vvk-charts-mcp"
]
}
}
}2) Reuse skill and agent presets
Use
ai/vvk-charts-skill.mdas a reusable prompt template.Use
ai/vvk-charts-agent.mdas a dedicated chart profile/system prompt.
3) Verify
Run a request like:
Use vvkcharts tools to generate a bar chart and save it to ./output/sales-q1.png.
Local development
uv sync
uv run ruff check .
uv run mypy srcRepository
Русская версия документации: README_ru.md
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/valderan/vvk-charts-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server