MCP-BOE vs fetch
Side-by-side comparison to help you pick between these two MCP servers.
MCP-BOE by ComputingVictor | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 39 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 76 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsgovernmentKnowledge Graph | Web ScrapingAI / LLM ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | this month | this month |
MCP-BOE · Summary
MCP server providing access to Spanish BOE legislation, daily summaries, and official documents via MCP and REST API.
fetch · Summary
An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.
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
fetch · Use cases
- LLMs reading news articles and blogs
- Content analysis of web pages
- Retrieving information from public websites
- Chunked reading of large web documents
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"]
}
}
}fetch · Install
Installation
**Using uv (recommended)** No specific installation needed. Use uvx to run the server directly:
uvx mcp-server-fetch**Using PIP** Install via pip:
pip install mcp-server-fetchThen run as:
python -m mcp_server_fetchClaude Desktop Configuration
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}