bzm-mcp vs sequentialthinking
并排对比,帮你在这两个 MCP server 之间做选择。
bzm-mcp by Blazemeter | sequentialthinking by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 25 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 44 | 75 |
| 官方 | — | ✓ |
| 分类 | 开发者工具可观测性运维基建 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 本月 | 本月 |
bzm-mcp · 概述
BlazeMeter MCP 服务器允许通过自然语言命令实现 AI 驱动的性能测试。
sequentialthinking · 概述
Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。
bzm-mcp · 使用场景
- 通过 AI 助手自动化负载测试的创建和执行
- 通过自然语言请求生成性能测试报告
- 使用 AI 代理以编程方式管理 BlazeMeter 测试基础设施
sequentialthinking · 使用场景
- 规划复杂系统迁移并进行风险评估
- 需要逐步分析的调试生产环境问题
- 比较具有条件分支的架构选项
bzm-mcp · 安装
安装选项
**二进制安装(推荐)**
- 从 [发布页面](https://github.com/BlazeMeter/bzm-mcp/releases) 下载适合您操作系统的二进制文件
- 将二进制文件与
api-keys.json文件放在同一文件夹中 - 运行二进制文件启动交互式配置工具
**使用 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 安装**
{
"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 · 安装
安装
**Claude Desktop**: 添加到您的 claude_desktop_config.json 文件中:
{
"mcpServers": {
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
}**VS Code**: 使用安装按钮或手动配置:
{
"servers": {
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
}**Docker**:
{
"mcpServers": {
"sequentialthinking": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"mcp/sequentialthinking"
]
}
}
}