mcp-server-chart vs imessage-query-fastmcp-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | imessage-query-fastmcp-mcp-server by hannesrudolph | |
|---|---|---|
| Stars | ★ 4,068 | ★ 77 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | CommunicationAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 3 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
imessage-query-fastmcp-mcp-server · Summary
FastMCP server providing safe access to iMessage database with proper validation and attachment handling.
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
imessage-query-fastmcp-mcp-server · Use cases
- Querying message history for specific phone numbers with optional date filtering
- Analyzing iMessage conversations and attachments through LLM integration
- Creating automated systems that need to access iMessage data on macOS
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"]
}
}
}imessage-query-fastmcp-mcp-server · Install
Installation
Prerequisites
- macOS (required for iMessage database access)
- Python 3.6+
Dependencies
pip install -r requirements.txtClaude Desktop Installation
fastmcp install imessage-query-server.py --name "iMessage Query"Cline VSCode Plugin Configuration
Add the following to your MCP settings:
{
"imessage-query": {
"command": "uv",
"args": [
"run",
"--with",
"fastmcp",
"fastmcp",
"run",
"/path/to/repo/imessage-query-server.py"
]
}
}