mcp-server-chart vs ATSPI-MCP-Server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | ATSPI-MCP-Server by C-Loftus | |
|---|---|---|
| Stars | ★ 4,068 | ★ 2 |
| 30d uses | 10,239 | — |
| Score | 84 | 29 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | Rust |
| 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.
ATSPI-MCP-Server · Summary
An MCP server that exposes Linux accessibility tree information through ATSPI
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
ATSPI-MCP-Server · Use cases
- Enabling AI assistants to understand and interact with Linux GUI applications
- Providing context-aware assistance to users with visual impairments
- Automating UI testing by inspecting element states on Linux systems
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"]
}
}
}ATSPI-MCP-Server · Install
Installation
- Clone the repository:
git clone https://github.com/C-Loftus/ATSPI-MCP-Server.git - Navigate to the project directory:
cd ATSPI-MCP-Server - Build the project:
cargo build --release - Configure your MCP client (e.g., Claude Desktop)
Claude Desktop Configuration
Add the following to your Claude Desktop config.json:
{
"mcpServers": {
"atspi": {
"command": "path/to/ATSPI-MCP-Server/target/release/atspi-mcp",
"args": []
}
}
}Note: Ensure apparmor is not blocking ATSPI communication by launching outside sandboxed environments.