MCP Catalogs
首页

peta-core vs sequentialthinking

并排对比,帮你在这两个 MCP server 之间做选择。

peta-core
by dunialabs
sequentialthinking
by modelcontextprotocol
Stars★ 47★ 85,748
30天用量
综合分4775
官方
分类
运维基建安全开发者工具
AI / LLM 工具开发者工具效率工具
实现语言TypeScriptTypeScript
最近提交1 个月前本月

peta-core · 概述

MCP 控制平面,提供安全、策略强制和审计功能。

sequentialthinking · 概述

Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。

peta-core · 使用场景

  • 集中策略强制和审计控制的 MCP 服务器企业部署
  • 需要安全管理 API 凭据和 OAuth 令牌的组织
  • 构建具有渐进披露和发现配置文件的内部 AI 工具目录的团队

sequentialthinking · 使用场景

  • 规划复杂系统迁移并进行风险评估
  • 需要逐步分析的调试生产环境问题
  • 比较具有条件分支的架构选项

peta-core · 安装

安装

Peta Core 可以使用 Docker 或作为 Node.js 应用程序部署。

Docker 部署

docker run -d --name peta-core -p 8080:8080 \
  -e DATABASE_URL=postgresql://user:pass@localhost:5432/peta \
  -e NEXTAUTH_SECRET=your-secret-key \
  petaio/peta-core:latest

Node.js 部署

npm install -g @peta/core
peta-core start

配置

配置 MCP 客户端连接到 Peta Core:

{
  "mcpServers": {
    "peta": {
      "command": "npx",
      "args": ["@modelcontextprotocol/server-peta", "--host", "localhost", "--port", "8080"]
    }
  }
}

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"
      ]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。