mcp-server-chart vs matrix-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | matrix-mcp-server by mjknowles | |
|---|---|---|
| Stars | ★ 4,068 | ★ 44 |
| 30d uses | 10,239 | — |
| Score | 84 | 42 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | CommunicationDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 9 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
matrix-mcp-server · Summary
Matrix MCP Server provides secure OAuth 2.0 authentication and 15 tools for Matrix home server integration with room management, messaging, and user profile operations.
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
matrix-mcp-server · Use cases
- Integrating Matrix chat functionality into AI assistants for automated room management and messaging
- Building workflow automations that trigger based on Matrix room events or messages
- Creating dashboard interfaces to monitor and manage Matrix communications through MCP clients
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"]
}
}
}matrix-mcp-server · Install
Installation
Prerequisites
- Node.js 20+ and npm
- Matrix homeserver access (Synapse, Dendrite, etc.)
- MCP client (Claude Desktop, VS Code with MCP extension, etc.)
Steps
# Clone the repository
git clone <repository-url>
cd matrix-mcp-server
# Install dependencies
npm install
# Build the project
npm run build
# Configure environment
cp .env.example .env
# Edit .env with your settings
# Start the server
npm startClaude Desktop Integration
{
"mcpServers": {
"matrix": {
"command": "node",
"args": ["dist/server.js"],
"env": {
"ENABLE_OAUTH": "true",
"MATRIX_HOMESERVER_URL": "https://matrix.example.com"
}
}
}
}