mcp-server-chart vs modex
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | modex by theronic | |
|---|---|---|
| Stars | ★ 4,068 | ★ 114 |
| 30d uses | 10,239 | — |
| Score | 84 | 41 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsDatabase |
| Language | TypeScript | Clojure |
| Last commit | this month | 14 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
modex · Summary
Modex is a Clojure library implementing MCP Server & Client to extend AI models with tools, resources, and prompts.
mcp-server-chart · Use cases
- Data analysts creating visual reports from datasets
- AI assistants generating custom charts based on user requests
- Web applications embedding visualization capabilities via HTTP API
modex · Use cases
- Augmenting AI models with database tools like Datomic integration
- Building custom MCP servers for production systems monitoring
- Extending AI clients with domain-specific tools and resources
mcp-server-chart · Install
Installation
Install globally:
npm install -g @antv/mcp-server-chartFor Desktop Apps (e.g., Claude Desktop, VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}For Windows:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}modex · Install
Installation
- Clone the repository:
``bash git clone git@github.com/theronic/modex.git cd modex ``
- Build the uberjar:
``bash ./build.sh ` This creates an executable jar at target/modex-mcp-0.2.2.jar`.
- Configure Claude Desktop:
Open ~/Library/Application Support/Claude/claude_desktop_config.json and add: ``json { "mcpServers": { "modex-mcp": { "command": "java", "args": ["-jar", "/full/path/to/modex/target/modex-mcp-0.2.2.jar"] } } } ``
- Restart Claude Desktop to activate the server.