mcp-server-chart vs ClaudeR
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | ClaudeR by IMNMV | |
|---|---|---|
| Stars | ★ 4,068 | ★ 227 |
| 30d uses | 10,239 | — |
| Score | 84 | 51 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
ClaudeR · Summary
ClaudeR bridges RStudio with MCP-based LLM agents for interactive coding, multi-agent orchestration, and automated manuscript auditing.
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
ClaudeR · Use cases
- Interactive data analysis with real-time code execution in RStudio
- Automated manuscript auditing and statistical verification
- Multi-agent collaborative coding on R scripts
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"]
}
}
}ClaudeR · Install
Installation
# Install using devtools
if (!require("devtools")) install.packages("devtools")
devtools::install_github("IMNMV/ClaudeR")
# Set up your AI tool
library(ClaudeR)
install_clauder() # For Claude Desktop / Cursor
install_cli(tools = "claude") # For Claude Code CLI
# Start the server in RStudio
claudeAddin()For Claude Desktop configuration, add to Claude Desktop's config.json:
{
"mcpServers": {
"clauder": {
"command": "Rscript",
"args": ["-e", "library(ClaudeR); claudeServe()"],
"env": {
"R_PROFILE_USER": ""
}
}
}
}