MCP Catalogs
首页

ai-agent-mcp vs everything

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

ai-agent-mcp
by alexey-tyurin
everything
by modelcontextprotocol
Stars★ 4★ 85,748
30天用量
综合分3377
官方
分类
AI / LLM 工具安全开发者工具
开发者工具AI / LLM 工具其它
实现语言PythonTypeScript
最近提交13 个月前本月

ai-agent-mcp · 概述

利用OpenAI API并通过Google ADK和MCP协议实现的AI内容审核系统。

everything · 概述

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

ai-agent-mcp · 使用场景

  • 确保教育平台与AI导师互动合适
  • 防止客服机器人被滥用同时保持服务友好性
  • 内容生成工具过滤不当创意内容请求

everything · 使用场景

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

ai-agent-mcp · 安装

安装步骤

  1. 克隆仓库:
git clone https://github.com/alexey-tyurin/ai-agent-mcp.git
cd ai-agent-mcp
  1. 创建并激活虚拟环境:
python -m venv venv
source venv/bin/activate  # 在Windows上使用: venv\Scripts\activate
  1. 安装依赖:
pip install -r requirements.txt
  1. 设置您的OpenAI API密钥:
export OPENAI_API_KEY="your-api-key-here"

Claude Desktop集成

添加到您的Claude Desktop配置文件config.json:

{
  "mcpServers": {
    "ai-moderation": {
      "command": "python",
      "args": ["path/to/ai-agent-mcp/moderation_server_sse.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 公开数据自动生成,定期更新。