MCP Catalogs
首页

a2a-demos vs everything

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

a2a-demos
by capiscio
everything
by modelcontextprotocol
Stars★ 18★ 85,748
30天用量
综合分4377
官方
分类
安全AI / LLM 工具开发者工具
开发者工具AI / LLM 工具其它
实现语言PythonTypeScript
最近提交本月本月

a2a-demos · 概述

展示 CapiscIO Agent Guard 和 MCP Guard 的演示代理,包含信任徽章、身份验证和工具级授权。

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

a2a-demos · 使用场景

  • 使用信任徽章和身份验证保护 MCP 服务器
  • 为 AI 代理实施运行时策略更改
  • 展示不同 AI 框架(LangChain、CrewAI、LangGraph)中的信任基础设施

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

a2a-demos · 安装

安装

每个演示都有自己的设置过程:

  1. **强制执行演示**:cd enforcement-demo && ./setup.sh
  2. **策略演示**:cd policy-demo && ./setup.sh
  3. **代理守卫演示**:cd multi-agent-demo && ./setup.sh

确保您拥有 Python 3.11+ 和 CapiscIO 帐户及 API 密钥。对于集成演示,您还需要 OpenAI API 密钥。

Claude Desktop 配置

将此添加到您的 Claude Desktop 配置中:

{
  "mcpServers": {
    "capiscio-guard": {
      "command": "python",
      "args": ["path/to/a2a-demos/enforcement-demo/server/main.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
对比内容由 README + GitHub 公开数据自动生成,定期更新。