mcp-server-chart vs voicemode
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | voicemode by mbailey | |
|---|---|---|
| Stars | ★ 4,068 | ★ 1,181 |
| 30d uses | 10,239 | — |
| Score | 84 | 55 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | CommunicationProductivityAI / LLM Tools |
| 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.
voicemode · Summary
VoiceMode enables natural voice conversations with Claude Code and other MCP agents through local or cloud speech services.
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
voicemode · Use cases
- Hands-free coding while walking or cooking
- Giving eyes a break during extended screen time
- Voice interactions when hands are occupied with other tasks
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"]
}
}
}voicemode · Install
Installation
**Option 1: Claude Code Plugin (Recommended)**
# Add the VoiceMode marketplace
claude plugin marketplace add mbailey/voicemode
# Install VoiceMode plugin
claude plugin install voicemode@voicemode
# Install dependencies (CLI, Local Voice Services)
/voicemode:install
# Start talking!
/voicemode:converse**Option 2: Python installer package**
# Install UV package manager (if needed)
curl -LsSf https://astral.sh/uv/install.sh | sh
# Run the installer (sets up dependencies and local voice services)
uvx voice-mode-install
# Add to Claude Code
claude mcp add --scope user voicemode -- uvx --refresh voice-modeAdd to Claude Desktop config (~/.claude/settings.json):
{
"mcpServers": {
"voicemode": {
"command": "uvx",
"args": ["--refresh", "voice-mode"]
}
}
}