MCP Catalogs
首页

arifos vs everything

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

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

arifos · 概述

宪法式AI治理内核,提供13个MCP工具以实现受控的代理执行。

everything · 概述

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

arifos · 使用场景

  • 带有宪法保障的受控AI代理执行
  • 使用不可变账本的审计可信代理工作流
  • 需要F1-F13宪法合规性的多智能体系统

everything · 使用场景

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

arifos · 安装

# 从PyPI安装
pip install arifos

# 从源码安装(可编辑模式,包含开发依赖)
pip install -e ".[dev]"

# 运行MCP服务器(HTTP + SSE)
python -m arifosmcp.server
# 或通过模块运行:
python -m arifosmcp.runtime.__main__

# 运行MCP服务器(stdio传输模式)
python -m arifosmcp.runtime.__main__ --mode stdio

对于Claude Desktop,添加到config.json:

{
  "mcpServers": {
    "arifos": {
      "command": "python",
      "args": ["-m", "arifosmcp.runtime.__main__", "--mode", "stdio"]
    }
  }
}

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 公开数据自动生成,定期更新。