sample-agentic-ai-demos vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
sample-agentic-ai-demos by aws-samples | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 101 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 46 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具运维基建开发者工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 3 个月前 | 本月 |
sample-agentic-ai-demos · 概述
AWS提供的MCP示例集合,展示与AWS服务的客户端-服务器交互。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
sample-agentic-ai-demos · 使用场景
- 在AWS基础设施(ECS)上构建生产部署的MCP服务器
- 创建与AWS Bedrock交互的MCP客户端,用于构建智能代理应用
- 使用MCP实现RAG系统,管理外部数据源
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
sample-agentic-ai-demos · 安装
这些示例根据具体模块有不同的安装要求。通常需要:
- 具备必要权限的AWS账户
- Docker(用于容器化示例)
- 相应模块的Python 3.7+或Java/Kotlin
对于Claude Desktop集成,需要在config.json中添加:
{
"mcpServers": {
"aws-mcp-demo": {
"command": "python",
"args": ["path/to/mcp/server.py"]
}
}
}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