mcp-server-chart vs llm-app-exploration
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | llm-app-exploration by ForrestKim42 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 23 |
| 30d uses | 10,239 | — |
| Score | 84 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | 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.
llm-app-exploration · Summary
MCP servers for automated app exploration via accessibility APIs, building complete UI maps and transition tables.
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
llm-app-exploration · Use cases
- Systematic UI mapping and documentation of mobile and desktop applications
- Automated competitive analysis by exploring entire app ecosystems
- Building deterministic user flows for automated testing or user assistance
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"]
}
}
}llm-app-exploration · Install
Installation
mobile-mcp (Android/iOS)
- Clone the repository:
git clone https://github.com/ForrestKim42/mobile-mcp.git - Follow the platform-specific instructions for Android or iOS setup
- Add to your MCP configuration:
{
"mcpServers": {
"mobile": {
"command": "node",
"args": ["/path/to/mobile-mcp/index.js"]
}
}
}desktop-mcp (macOS)
- Clone the repository:
git clone https://github.com/ForrestKim42/desktop-mcp.git - Follow the setup instructions for macOS accessibility permissions
- Add to your MCP configuration:
{
"mcpServers": {
"desktop": {
"command": "node",
"args": ["/path/to/desktop-mcp/index.js"]
}
}
}