Predio exposes a remote MCP server (Streamable HTTP) — no install, no repo, no Docker:
- URL:
https://api.prediohq.com/mcp - Auth: header
x-api-key(free key, 250 calls/month: https://prediohq.com) - Tools:
consultar_inmueble_catastro(by cadastral reference) ·consultar_inmueble_por_coordenadas(lat/lon) ·consultar_inmueble_por_direccion(address)
Discovery (initialize/tools/list) works without a key — try it before signing up.
claude mcp add --transport http predio https://api.prediohq.com/mcp \
--header "x-api-key: $PREDIO_API_KEY"{
"mcpServers": {
"predio": {
"type": "streamable-http",
"url": "https://api.prediohq.com/mcp",
"headers": { "x-api-key": "pk_..." }
}
}
}Also listed as @predio/catastro-mcp on Smithery
and on Glama Connectors — both can proxy the connection and manage the key for you.
curl -s -X POST https://api.prediohq.com/mcp \
-H "Content-Type: application/json" -H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'