MCP server para el BOE 🇪🇸 — Acceso a legislación consolidada, sumarios diarios y tablas oficiales del Boletín Oficial del Estado mediante Model Context Protocol y API REST.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"mcp-boe": {
"args": [
"run",
"--python",
"3.12",
"--project",
"/ruta/absoluta/a/MCP-BOE",
"python",
"-m",
"mcp_boe.server"
],
"command": "uv"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Model Context Protocol para el Boletín Oficial del Estado español
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
buscar_legislacionBusca y resume normas del BOE
analizar_normaAnálisis completo de una norma: metadatos, estado de vigencia, estructura y relaciones con otras normas
resumen_boe_diaResumen de las publicaciones más relevantes del BOE de una fecha concreta
comparar_normasCompara dos normas e identifica relaciones de modificación o derogación entre ellas
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in legal
87 tools for Korean law — statutes, precedents, ordinances, interpretations | MCP Server · CLI · npm
Proof primitive for AI agents on MultiversX. Anchor file hashes on-chain as verifiable proofs.
956k Swiss court decisions: full-text search, citation graph, statute lookup (DE/FR/IT)
AFIP — Argentine tax authority, electronic invoicing (Factura Electrónica)
MCP Security Weekly
Get CVE alerts and security updates for MCP BOE and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Model Context Protocol para el Boletín Oficial del Estado español
Un servidor MCP que permite a Claude y otros LLMs acceder a la API oficial del BOE para consultar legislación consolidada, sumarios diarios y tablas auxiliares del gobierno español.
mcp)Con uvx no necesitas clonar el repositorio ni gestionar dependencias:
uvx --from git+https://github.com/ComputingVictor/MCP-BOE.git mcp-boe
git clone https://github.com/ComputingVictor/MCP-BOE.git
cd MCP-BOE
# Instalar dependencias y ejecutar
uv run python -m mcp_boe.server
git clone https://github.com/ComputingVictor/MCP-BOE.git
cd MCP-BOE
pip install -e .
Edita el archivo de configuración de Claude Desktop:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json{
"mcpServers": {
"mcp-boe": {
"command": "uv",
"args": [
"run",
"--python", "3.12",
"--project", "/ruta/absoluta/a/MCP-BOE",
"python", "-m", "mcp_boe.server"
]
}
}
}
Sustituye
/ruta/absoluta/a/MCP-BOEpor la ruta real donde clonaste el repositorio.
{
"mcpServers": {
"mcp-boe": {
"command": "uvx",
"args": ["--from", "git+https://github.com/ComputingVictor/MCP-BOE.git", "mcp-boe"]
}
}
}
Reinicia Claude Desktop tras guardar los cambios.
{
"mcpServers": {
"mcp-boe": {
"command": "uvx",
"args": ["--from", "git+https://github.com/ComputingVictor/MCP-BOE.git", "mcp-boe"],
"transport": "stdio"
}
}
}
También puedes usar el archivo incluido en el repositorio:
# Desde el directorio del proyecto
claude --mcp-config claude_mcp_config_uvx.json
El servidor incluye 4 prompts integrados accesibles desde el selector de prompts de Cl