MCP Catalogs
Home

bzm-mcp vs sequentialthinking

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

bzm-mcp
by Blazemeter
sequentialthinking
by modelcontextprotocol
Stars★ 25★ 85,748
30d uses
Score4475
Official
Categories
Developer ToolsMonitoringOps & Infra
AI / LLM ToolsDeveloper ToolsProductivity
LanguagePythonTypeScript
Last committhis monththis month

bzm-mcp · Summary

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

sequentialthinking · Summary

Sequential Thinking MCP Server enables dynamic problem-solving through step-by-step reasoning.

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

sequentialthinking · Use cases

  • Planning complex system migrations with risk assessment
  • Debugging production issues requiring step-by-step analysis
  • Comparing architecture options with conditional branching

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

sequentialthinking · Install

Installation

**Claude Desktop**: Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "sequential-thinking": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sequential-thinking"
      ]
    }
  }
}

**VS Code**: Use one of the installation buttons or manually configure with:

{
  "servers": {
    "sequential-thinking": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sequential-thinking"
      ]
    }
  }
}

**Docker**:

{
  "mcpServers": {
    "sequentialthinking": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "mcp/sequentialthinking"
      ]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.