wp-mcp vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
wp-mcp by Adi-ty | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 2 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 32 | 84 |
| Official | — | — |
| Categories | E-commerceAI / LLM ToolsDeveloper Tools | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 10 mo ago | this month |
wp-mcp · Summary
WordPress MCP server enables AI agents to manage WordPress content through natural language commands.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
wp-mcp · Use cases
- AI-powered content creation and publishing for WordPress blogs
- Voice-controlled website management through AI assistants
- Automated content generation with direct WordPress publishing
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
wp-mcp · Install
npm install @adi.lib/wp-mcpAdd to your client configuration:
{
"servers": {
"wp-mcp": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@adi.lib/wp-mcp"],
"env": {
"WP_BASE_URL": "https://your-site.com",
"WP_USERNAME": "admin",
"WP_APP_PASSWORD": "abc1 def2 ghi3 jkl4"
}
}
}
}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"]
}
}
}