Table Charts
This server lets you transform tabular data into shareable, interactive dashboards from any MCP-compatible AI client (e.g., Claude, Cursor, VS Code). It provides two tools:
generate_dashboard: Creates a hosted, embeddable dashboard from your data. Supports:JSON row arrays (
data), raw CSV text (csv), or public URLs from Notion, Google Sheets, or Salesforce (source_url)Optional
title,chart_type(bar, line, area, pie, scatter, radar),ai_recommend(auto-selects best chart type), andai_clean(AI data cleaning, Pro tier)Returns a public
dashboard_url,embed_url, andiframe_codefor sharing or embedding
list_chart_types: Returns the six supported chart types (bar, line, area, pie, scatter, radar) to help inform chart selection.
Requires a TableCharts API key; free and pro tiers are available with varying limits and features.
Allows pulling data from Google Sheets to create shareable interactive dashboards.
Allows pulling data from a Notion database to create shareable interactive dashboards.
Allows pulling data from Salesforce to create shareable interactive dashboards.
MCP server for TableCharts — turn tables (CSV, JSON, Notion, Google Sheets, Salesforce) into shareable interactive dashboards, directly from Claude, Cursor, VS Code, or any other MCP client.
Why
LLMs are great at producing structured data but terrible at producing real charts. This server gives any MCP-aware assistant a one-shot tool to convert tabular data into a hosted, embeddable dashboard with a public URL.
Related MCP server: MCP Server Chart
Install
npm i -g @tablecharts/mcp-serverOr run on demand with npx -y @tablecharts/mcp-server — no install needed.
Get an API key
Sign up at https://tablecharts.co
Create a key starting with
tc_live_…
Configure your MCP client
Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"tablecharts": {
"command": "npx",
"args": ["-y", "@tablecharts/mcp-server"],
"env": {
"TABLECHARTS_API_KEY": "tc_live_..."
}
}
}
}Restart Claude Desktop. The generate_dashboard tool will appear in the tools menu.
Cursor
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"tablecharts": {
"command": "npx",
"args": ["-y", "@tablecharts/mcp-server"],
"env": { "TABLECHARTS_API_KEY": "tc_live_..." }
}
}
}VS Code (with MCP extension)
{
"mcp.servers": {
"tablecharts": {
"command": "npx",
"args": ["-y", "@tablecharts/mcp-server"],
"env": { "TABLECHARTS_API_KEY": "tc_live_..." }
}
}
}Tools
Tool | Description |
| Create a dashboard from |
| Returns the 6 supported chart types: |
Example prompts
"Chart my monthly revenue: Jan 12k, Feb 15k, Mar 18k, Apr 22k. Use TableCharts."
"Pull this Notion database and build a dashboard: https://notion.so/…"
"Take this CSV and pick the best chart type automatically."
Environment variables
Variable | Required | Description |
| yes | Your |
| no | Override the API base (default |
Limits
Free tier: 3 saved charts, 30 requests/minute.
Pro tier: unlimited charts, AI cleaning, AI chart recommendation, custom colors, no watermark.
License
MIT
Maintenance
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/Browncabinet/tablecharts-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server