mcp-catastro
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| CATASTRO_MCP_ANONIMO | No | Set to '1' to enable anonymous access with a quota of 50 requests per day per client IP. | |
| CATASTRO_MCP_PUBLIC_HOST | No | Host name for the public remote instance of the Catastro MCP server. |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| catastro_descargar_municipioA | Baja el parcelario INSPIRE completo del municipio (GML oficial, sin límite) y construye la caché local. Operación fundacional: el resto la da por hecha. Códigos numéricos (Muxía: provincia '15', municipio '15053'). Cualquier operación sobre más de ~20 parcelas se resuelve aquí, nunca una a una. |
| catastro_parcela_localA | Superficie oficial (areaValue del GML — la única fuente aceptada), centroide y geometría, desde caché, sin red. |
| catastro_vecinasB | Parcelas que tocan (o quedan a menos de contacto_max metros de) una dada, con orientación cardinal. Local, sin red. |
| catastro_en_radioB | Parcelas cuyo centroide cae dentro de un círculo (x, y en EPSG:25829, radio en metros). Local, sin red. |
| catastro_buscar_parajeA | Búsqueda difusa por nombre de paraje sobre los ya cacheados (los rellena catastro_ficha / catastro_completar_parajes). Local, sin red. Un nombre inventado debe quedar bajo el umbral. |
| catastro_fichaA | Consulta la sede electrónica (host www1, distinto del OVC — sobrevive a sus bloqueos): paraje, clase, uso, superficie gráfica (informativa; la oficial es la del GML) y RC de 20. Acepta RC de 14. provincia_del/municipio_mun: códigos de la sede (Muxía: del '15', mun '53'). NO existe por vía pública: valor de referencia (pide certificado/Cl@ve) ni titularidad (dato protegido). |
| catastro_por_poligono_parcelaA | Resuelve la RC desde polígono/parcela vía OVC (Consulta_DNPPP). provincia/municipio en texto OVC ('A CORUÑA', 'MUXIA'). |
| catastro_por_coordenadaA | Resuelve qué parcela hay en un punto vía OVC (Consulta_RCCOOR). Prefiere catastro_en_radio si el municipio está cacheado. |
| catastro_estadoB | Control de tres puntas contra ambos hosts (RC que funcionó + RC inventada): distingue 'no existe' (error de datos con canario OK) de 'no puedo' (todo falla igual → bloqueo de IP). Llamar antes de una tanda y cuando algo devuelva vacío. Un 403 aislado no dice nada. |
| catastro_completar_parajesA | Recorre una lista de RCs rellenando el paraje que falte vía la sede, con limitador. Reanudable: se salta las que ya tienen ficha; si el techo diario corta, se relanza otro día con la misma lista. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 10 tools
Most tools have clearly distinct purposes: download, local lookup, proximity search, radius search, fuzzy name search, online ficha, coordinate/polygon resolution, status check, and paraje completion. The only mild overlap is between catastro_en_radio and catastro_por_coordenada, but descriptions clearly distinguish local radius search from direct OVC coordinate lookup.
All tools share the 'catastro_' prefix, but the remainder follows mixed conventions: some start with verbs (descargar, buscar, completar), some with nouns (parcela, ficha, estado), and some with prepositions (en_radio, por_poligono_parcela, por_coordenada). This inconsistency makes the naming pattern less predictable despite the shared prefix.
With 10 tools, the server is well-scoped for a cadastre domain. Each tool addresses a specific need (download, query, search, status, completion) without redundancy or bloat, making the count appropriate for the stated purpose.
The tool set covers the core lifecycle: downloading municipal data, querying parcels locally and online, finding nearby parcels, searching by place name, resolving parcels from coordinates/polygons, and checking service status. Minor gaps include no explicit cache management (e.g., update/delete) and some online queries are intentionally omitted (titularity), but agents can work around these.