MCP Catalogs
首页

MCP-BOE vs everything

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

MCP-BOE
by ComputingVictor
everything
by modelcontextprotocol
Stars★ 39★ 85,748
30天用量
综合分4777
官方
分类
AI / LLM 工具government知识库 / RAG
开发者工具AI / LLM 工具其它
实现语言PythonTypeScript
最近提交本月本月

MCP-BOE · 概述

提供西班牙 BOE 法律法规、每日摘要和官方文档访问权限的 MCP 服务器。

everything · 概述

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

MCP-BOE · 使用场景

  • 通过查询合并的西班牙立法进行法律研究和分析
  • 跟踪每日政府出版物和法规变更
  • 比较和分析不同法律规范之间的关系

everything · 使用场景

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

MCP-BOE · 安装

安装

**选项 1:使用 uvx(推荐)**

uvx --from git+https://github.com/ComputingVictor/MCP-BOE.git mcp-boe

**选项 2:从源代码使用 uv**

git clone https://github.com/ComputingVictor/MCP-BOE.git
cd MCP-BOE
uv run python -m mcp_boe.server

**选项 3:使用 pip**

git clone https://github.com/ComputingVictor/MCP-BOE.git
cd MCP-BOE
pip install -e .

使用 Claude Desktop 配置

添加到您的配置中:

{
  "mcpServers": {
    "mcp-boe": {
      "command": "uvx",
      "args": ["--from", "git+https://github.com/ComputingVictor/MCP-BOE.git", "mcp-boe"]
    }
  }
}

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