MCP Catalogs
首页

iam-policy-autopilot vs sequentialthinking

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

iam-policy-autopilot
by awslabs
sequentialthinking
by modelcontextprotocol
Stars★ 359★ 85,748
30天用量
综合分5075
官方
分类
开发者工具安全运维基建
AI / LLM 工具开发者工具效率工具
实现语言RustTypeScript
最近提交本月本月

iam-policy-autopilot · 概述

AWS IAM Policy Autopilot 帮助 AI 编码助手通过代码分析创建基础 IAM 策略。

sequentialthinking · 概述

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

iam-policy-autopilot · 使用场景

  • AI 编码助手在应用程序开发过程中生成 IAM 策略
  • 安全团队为 AWS 应用程序创建基础策略
  • DevOps 团队在 CI/CD 管道中自动化 IAM 策略创建

sequentialthinking · 使用场景

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

iam-policy-autopilot · 安装

安装

使用 uv(推荐)

从 Astral 安装 [uv](https://docs.astral.sh/uv/getting-started/installation/)。

无需额外安装 - 可以直接使用 uvx iam-policy-autopilot 运行 IAM Policy Autopilot。

使用 pip

安装 [pip](https://pip.pypa.io/en/stable/installation/)。

pip install iam-policy-autopilot

MCP 服务器配置

对于 Claude Desktop:

{
  "mcpServers": {
    "iam-policy-autopilot": {
      "command": "iam-policy-autopilot",
      "args": ["mcp-server"],
      "env": {
        "AWS_PROFILE": "your-profile-name",
        "AWS_REGION": "us-east-1"
      }
    }
  }
}

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 公开数据自动生成,定期更新。