Vega-Lite
Generate visualizations from fetched data using the VegaLite format and renderer.
Data Visualization MCP Server
Overview
A Model Context Protocol (MCP) server implementation that provides the LLM an interface for visualizing data using Vega-Lite syntax.
Components
Tools
The server offers two core tools:
save_data
- Save a table of data agregations to the server for later visualization
- Input:
name
(string): Name of the data table to be saveddata
(array): Array of objects representing the data table
- Returns: success message
visualize_data
- Visualize a table of data using Vega-Lite syntax
- Input:
data_name
(string): Name of the data table to be visualizedvegalite_specification
(string): JSON string representing the Vega-Lite specification
- Returns: If the
--output_type
is set totext
, returns a success message with an additionalartifact
key containing the complete Vega-Lite specification with data. If the--output_type
is set topng
, returns a base64 encoded PNG image of the visualization using the MPCImageContent
container.
Usage with Claude Desktop
# Add the server to your claude_desktop_config.json
{
"mcpServers": {
"datavis": {
"command": "uv",
"args": [
"--directory",
"/absolute/path/to/mcp-datavis-server",
"run",
"mcp_server_datavis",
"--output_type",
"png" # or "text"
]
}
}
}
Related Servers
Code Assistant
A server for code modification and generation using Large Language Models.
Advent of Code MCP Server
Interact with the Advent of Code website. Requires a session cookie for authentication.
Cloudflare MCP Server Example
An example of deploying a remote MCP server on Cloudflare Workers without authentication.
Gurobi MCP
Solve optimization problems formulated by an LLM using the on-device Gurobi solver.
MCPatterns
A server for storing and retrieving personalized coding patterns from a local JSONL file.
302AI Basic MCP Server
A toolkit for enhancing the fundamental capabilities of large language models.
Allyson
AI-powered SVG animation generator that transforms static files into animated SVG components using the Allyson platform
MCP Tools for Open WebUI
An MCP server for Open WebUI that provides tools for secure Python code execution, time, and SDXL image generation.
PlantUML-MCP-Server
MCP server that provides PlantUML diagram generation capabilities
Alchemy MCP Server
Interact with Alchemy's blockchain APIs to query data without writing code.