iam-policy-autopilot vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
iam-policy-autopilot by awslabs | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 359 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 50 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具安全运维基建 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Rust | TypeScript |
| 最近提交 | 本月 | 本月 |
iam-policy-autopilot · 概述
AWS IAM Policy Autopilot 帮助 AI 编码助手通过代码分析创建基础 IAM 策略。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
iam-policy-autopilot · 使用场景
- AI 编码助手在应用程序开发过程中生成 IAM 策略
- 安全团队为 AWS 应用程序创建基础策略
- DevOps 团队在 CI/CD 管道中自动化 IAM 策略创建
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
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-autopilotMCP 服务器配置
对于 Claude Desktop:
{
"mcpServers": {
"iam-policy-autopilot": {
"command": "iam-policy-autopilot",
"args": ["mcp-server"],
"env": {
"AWS_PROFILE": "your-profile-name",
"AWS_REGION": "us-east-1"
}
}
}
}everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything