aws-mcp-server vs sequentialthinking
并排对比,帮你在这两个 MCP server 之间做选择。
aws-mcp-server by alexei-led | sequentialthinking by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 182 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 50 | 75 |
| 官方 | — | ✓ |
| 分类 | 运维基建开发者工具云存储 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 3 个月前 | 本月 |
aws-mcp-server · 概述
AWS MCP 服务器使 AI 助手能够通过 MCP 在安全容器化环境中执行 AWS CLI 命令。
sequentialthinking · 概述
Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。
aws-mcp-server · 使用场景
- 通过 AI 助手自动化 AWS 基础设施管理
- 使用 AI 驱动的 CLI 命令生成进行云调试和故障排除
- 使用 AWS 服务进行基础设施即代码辅助
sequentialthinking · 使用场景
- 规划复杂系统迁移并进行风险评估
- 需要逐步分析的调试生产环境问题
- 比较具有条件分支的架构选项
aws-mcp-server · 安装
安装
使用 uvx(推荐)
添加到您的 MCP 设置中(Cmd+Shift+P → "Claude: Open MCP Config"):
{
"mcpServers": {
"aws": {
"command": "uvx",
"args": ["aws-mcp"]
}
}
}使用 Docker(更安全)
Docker 通过在容器中运行命令提供更强的隔离性:
{
"mcpServers": {
"aws": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"~/.aws:/home/appuser/.aws:ro",
"ghcr.io/alexei-led/aws-mcp-server:latest"
]
}
}
}使用可流式 HTTP 传输
对于基于 Web 的 MCP 客户端:
docker run --rm -p 8000:8000 -e AWS_MCP_TRANSPORT=streamable-http -v ~/.aws:/home/appuser/.aws:ro ghcr.io/alexei-led/aws-mcp-server:latest服务器将在 http://localhost:8000/mcp 可用。
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"
]
}
}
}