mcp-server-chart vs guildbridge
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | guildbridge by dend | |
|---|---|---|
| Stars | ★ 4,068 | ★ 15 |
| 30d uses | 10,239 | — |
| Score | 84 | 42 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | CommunicationDeveloper ToolsSecurity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
guildbridge · Summary
A remote MCP server for Discord that allows AI agents to read, search, and post messages in Discord servers with authenticated access.
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
guildbridge · Use cases
- AI assistants monitoring Discord conversations and providing responses
- Automated content moderation in Discord communities
- Integrating Discord discussions with AI-powered knowledge bases
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"]
}
}
}guildbridge · Install
Installation & Setup
- **Prerequisites**:
- Node.js (v18+) - Cloudflare account - Discord application with bot user and OAuth2 configured
- **Discord App Setup**:
- Create Discord app with bot user - Configure OAuth2 with required scopes - Enable Message Content Intent - Invite bot to servers with necessary permissions
- **Local Development**:
``bash npm install cp wrangler.jsonc.example wrangler.jsonc cp .dev.vars.example .dev.vars npm run dev ``
- **Deploy to Cloudflare**:
Use Terraform or manual setup with Wrangler CLI to provision resources and deploy.
- **Connect MCP Client**:
Point any MCP-compatible client at https://<your-worker>.workers.dev/mcp
For Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"discord": {
"command": "npx",
"args": ["@modelcontextprotocol/server-discord"],
"env": {
"DISCORD_URL": "https://<your-worker>.workers.dev/mcp"
}
}
}
}