Skip to content

Latest commit

 

History

History
44 lines (33 loc) · 1.3 KB

File metadata and controls

44 lines (33 loc) · 1.3 KB

Connect Predio's MCP server to Claude (or any MCP client)

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 Code

claude mcp add --transport http predio https://api.prediohq.com/mcp \
  --header "x-api-key: $PREDIO_API_KEY"

Claude Desktop / generic JSON config

{
  "mcpServers": {
    "predio": {
      "type": "streamable-http",
      "url": "https://api.prediohq.com/mcp",
      "headers": { "x-api-key": "pk_..." }
    }
  }
}

Smithery / Glama

Also listed as @predio/catastro-mcp on Smithery and on Glama Connectors — both can proxy the connection and manage the key for you.

Try it (no client)

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"}'