mcp-server-chart vs k6-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | k6-mcp-server by QAInsights | |
|---|---|---|
| Stars | ★ 4,068 | ★ 24 |
| 30d uses | 10,239 | — |
| Score | 84 | 36 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsMonitoringOps & Infra |
| Language | TypeScript | Python |
| Last commit | this month | 14 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
k6-mcp-server · Summary
k6 MCP server for load testing integration with AI models through Model Context Protocol.
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
k6-mcp-server · Use cases
- AI-powered performance test analysis and interpretation
- Automated regression testing triggered by code changes
- Performance benchmarking as part of CI/CD pipelines
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"]
}
}
}k6-mcp-server · Install
Installation
- Clone the repository:
git clone https://github.com/qainsights/k6-mcp-server.git- Install dependencies:
uv pip install -r requirements.txt- Set up environment variables (optional):
Create a .env file with:
K6_BIN=/path/to/k6- Configure in your MCP client (e.g., Claude Desktop):
{
"mcpServers": {
"k6": {
"command": "/path/to/bin/uv",
"args": [
"--directory",
"/path/to/k6-mcp-server",
"run",
"k6_server.py"
]
}
}
}