mcp-server-chart vs plausible-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | plausible-mcp by The-Focus-AI | |
|---|---|---|
| Stars | ★ 4,068 | ★ 1 |
| 30d uses | 10,239 | — |
| Score | 84 | 31 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsMonitoringDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 10 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
plausible-mcp · Summary
An MCP server for natural interaction with Plausible Analytics data via LLM conversations.
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
plausible-mcp · Use cases
- Website administrators querying traffic sources and visitor demographics
- Content creators analyzing which pages have the highest engagement
- Marketing teams evaluating campaign performance and UTM effectiveness
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"]
}
}
}plausible-mcp · Install
# Clone the repository
git clone https://github.com/The-Focus-AI/plausible-mcp.git
cd plausible-mcp
# Install dependencies
pnpm install
# Build the server
pnpm build
# Run the server
pnpm startClaude Desktop Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"plausible": {
"command": "node",
"args": ["path/to/plausible-mcp/dist/index.js"],
"env": {
"PLAUSIBLE_API_KEY": "your_api_key_here",
"PLAUSIBLE_API_URL": "https://plausible.io/api/v2"
}
}
}
}