Chhart MCP Server
An MCP (Model Context Protocol) server that enables AI assistants like ChatGPT, Claude, and others to programmatically create flowcharts and Sankey diagrams on chhart.app.
Table of Contents
Features
π¨ Create Flowcharts - Generate flowcharts using Chhart's intuitive text-based DSL
π Create Sankey Diagrams - Build Sankey diagrams from flow data
π Syntax Help - Get comprehensive documentation and examples
π Shareable URLs - All diagrams come with shareable chhart.app links
π Easy Integration - Works with any MCP-compatible AI assistant
π Dual Mode - Run locally (stdio) or remotely (StreamableHTTP)
βοΈ Cloud Ready - Deploy to Railway, Vercel, or any Node.js hosting
π Reliable - Modern StreamableHTTP transport for stable connections
Prerequisites
Node.js 20 or higher
npm or yarn
An MCP-compatible client (Claude Desktop, Cursor, etc.)
Installation
From npm
Or run directly without installing:
From Source
Usage
Quick Start (Public Server)
You can use our managed MCP server without installing anything locally.
Configure your MCP client to connect to the public endpoint:
Local Mode (stdio)
For use with Claude Desktop, Cursor, or other local MCP clients:
Build the project:
npm run buildAdd to your MCP client configuration:
For Claude Desktop, edit
claude_desktop_config.json:{ "mcpServers": { "chhart": { "command": "npx", "args": ["-y", "chhart-mcp"] } } }For Cursor or other clients, see CONFIG_EXAMPLES.md for more examples.
Restart your MCP client
Remote Mode (StreamableHTTP)
For deployment to Railway, Vercel, or other cloud platforms, we use the modern StreamableHTTP transport for reliable, stateless communication.
Build and start the StreamableHTTP server:
npm run build npm run start:streamableThe server will start on port 3000 (or the port specified in
PORTenvironment variable).Configure your MCP client to connect to the remote endpoint:
{ "mcpServers": { "chhart": { "url": "https://your-deployment-url.com/mcp" } } }Deploy to Railway:
See the Railway Deployment Guide for detailed instructions.
Why StreamableHTTP?
We migrated from SSE to StreamableHTTP transport for better reliability:
Feature | SSE Transport | StreamableHTTP Transport |
Connection Type | Long-lived SSE stream | Stateless HTTP requests |
Stability | Prone to timeouts | β Robust and reliable |
Cloud Compatibility | Limited | β Excellent |
Session Management | Required | Optional (stateless) |
Legacy SSE Mode
The SSE transport is still available but deprecated:
Available Tools
create_flowchart
Creates a flowchart using Chhart's text-based DSL.
Parameters:
content(string, required) - Flowchart content in Chhart DSL formattitle(string, optional) - Title for the flowchart
Example:
create_sankey
Creates a Sankey diagram showing flows between nodes.
Parameters:
content(string, required) - Sankey diagram content in Chhart DSL formattitle(string, optional) - Title for the diagram
Example:
get_syntax_help
Returns documentation and examples for Chhart syntax.
Parameters:
type(enum, optional) -'flowchart','sankey', or'all'(default:'all')
Example Conversations
Once configured, you can ask your AI assistant:
"Create a flowchart showing a user login process with email verification"
"Create a Sankey diagram showing how $100 of revenue splits into costs, taxes, and profit"
"Show me the syntax for creating flowcharts in Chhart"
Development
Project Structure
How It Works
The MCP server generates shareable URLs by encoding chart data into the URL hash, leveraging chhart.app's existing URL-based sharing feature. This means:
β No backend API required
β Charts are fully client-side
β URLs work immediately without storage
β Charts can be edited on chhart.app
β Privacy-friendly (data stays in the URL)
Troubleshooting
"Command not found" or "Module not found"
Ensure you've run
npm installandnpm run buildVerify the path in your MCP client configuration is absolute
Check that Node.js 20+ is installed:
node --version
Connection Issues
"connection closed: EOF" or similar errors:
If using remote mode, ensure you're using StreamableHTTP transport (
npm run start:streamable)The legacy SSE transport is deprecated and may have stability issues
Verify the server is running: check the health endpoint at
http://localhost:3000/healthCheck firewall settings if deploying remotely
Ensure CORS is properly configured for your domain
Client configuration:
StreamableHTTP clients use
application/jsonrequests to/mcpLegacy SSE clients require
text/event-streamfor the/mcpstream and JSON for/messagesEnsure the URL points to the
/mcpendpoint
Charts Not Loading
Verify the generated URL is complete and not truncated
Check browser console for errors
Try opening the URL directly in a browser
Very large diagrams may exceed URL length limits (typically 2000 characters)
TypeScript Build Errors
Ensure you're using Node.js 20+
Delete
node_modulesanddist, then runnpm installandnpm run buildCheck for TypeScript version compatibility
For more help, see CONTRIBUTING.md or open an issue.
Contributing
We welcome contributions! Please see CONTRIBUTING.md for guidelines on:
Reporting bugs
Suggesting features
Submitting pull requests
Development setup
Coding standards
Security
For security concerns, please see our Security Policy. Do not open public issues for security vulnerabilities.
License
MIT License - see LICENSE for details.
Copyright (c) 2026 Chhart.app
Links
Chhart.app - Create and share diagrams
Model Context Protocol - Learn about MCP
Documentation - Additional guides and examples
Changelog - Version history and updates
Issues - Report bugs or request features