MCP Catalogs
Home

MCP-BOE vs everything

Side-by-side comparison to help you pick between these two MCP servers.

MCP-BOE
by ComputingVictor
everything
by modelcontextprotocol
Stars★ 39★ 85,748
30d uses
Score4777
Official
Categories
AI / LLM ToolsgovernmentKnowledge Graph
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last committhis monththis month

MCP-BOE · Summary

MCP server providing access to Spanish BOE legislation, daily summaries, and official documents via MCP and REST API.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

MCP-BOE · Use cases

  • Legal research and analysis by querying consolidated Spanish legislation
  • Tracking daily government publications and changes in regulations
  • Comparing and analyzing relationships between different legal norms

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

MCP-BOE · Install

Installation

**Option 1: Using uvx (Recommended)**

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

**Option 2: From source with uv**

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

**Option 3: With pip**

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

Configuration with Claude Desktop

Add to your configuration:

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

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.