MCP Catalogs
Home

mcp-server-chart vs bzm-mcp

Side-by-side comparison to help you pick between these two MCP servers.

mcp-server-chart
by antvis
bzm-mcp
by Blazemeter
Stars★ 4,068★ 25
30d uses10,239
Score8444
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsMonitoringOps & Infra
LanguageTypeScriptPython
Last committhis monththis month

mcp-server-chart · Summary

A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.

bzm-mcp · Summary

BlazeMeter MCP server enables AI-driven performance testing via natural language commands.

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

bzm-mcp · Use cases

  • Automating load test creation and execution through AI assistants
  • Generating performance test reports via natural language requests
  • Managing BlazeMeter test infrastructure programmatically using AI agents

mcp-server-chart · Install

Installation

Install globally:

npm install -g @antv/mcp-server-chart

For 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"]
    }
  }
}

bzm-mcp · Install

Installation Options

**Binary Installation (Recommended)**

  1. Download the binary for your OS from [Releases](https://github.com/BlazeMeter/bzm-mcp/releases)
  2. Place the binary in the same folder as your api-keys.json file
  3. Run the binary to launch the interactive configuration tool

**Source Code Installation with uv**

{
  "mcpServers": {
    "BlazeMeter MCP": {
      "command": "uvx",
      "args": [
        "--from", "git+https://github.com/BlazeMeter/bzm-mcp.git@v1.0.1",
        "-q", "bzm-mcp", "--mcp"
      ],
      "env": {
        "BLAZEMETER_API_KEY": "/path/to/your/api-key.json"
      }
    }
  }
}

**Docker Installation**

{
  "mcpServers": {
    "BlazeMeter MCP": {
      "command": "docker",
      "args": [
        "run",
        "--pull=always",
        "--rm",
        "-i",
        "-e", "API_KEY_ID=your_api_key_id",
        "-e", "API_KEY_SECRET=your_api_key_secret",
        "ghcr.io/blazemeter/bzm-mcp:latest"
      ]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.