perfetto-mcp vs sequentialthinking
并排对比,帮你在这两个 MCP server 之间做选择。
perfetto-mcp by antarikshc | sequentialthinking by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 178 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 50 | 75 |
| 官方 | — | ✓ |
| 分类 | 开发者工具可观测性运维基建 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
perfetto-mcp · 概述
一个将自然语言提示转换为 Perfetto 跟踪分析的 MCP 服务器,用于 Android 性能调试。
sequentialthinking · 概述
Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。
perfetto-mcp · 使用场景
- 使用自然语言诊断 Android 跟踪中的应用性能问题
- 自动分析 ANR 事件并识别根本原因
- 分析 CPU 使用情况和帧性能,无需编写 SQL
sequentialthinking · 使用场景
- 规划复杂系统迁移并进行风险评估
- 需要逐步分析的调试生产环境问题
- 比较具有条件分支的架构选项
perfetto-mcp · 安装
安装
**使用 uvx(推荐)**:
对于 Cursor:
{
"mcpServers": {
"perfetto-mcp": {
"command": "uvx",
"args": ["perfetto-mcp"]
}
}
}对于 Claude Code:
claude mcp add perfetto-mcp --scope user -- uvx perfetto-mcp对于 VS Code: 添加到 .vscode/mcp.json:
{
"mcpServers": {
"perfetto-mcp": {
"command": "uvx",
"args": ["perfetto-mcp"]
}
}
}**使用 pip**:
pip3 install perfetto-mcp
python3 -m perfetto_mcp**先决条件**:
- Python 3.13+
- uv(推荐)
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"
]
}
}
}