@pipeworx/georgia-heritage
Connect: https://gateway.pipeworx.io/georgia-heritage/mcp · Install: one-click buttons
Tools: 5
The National Register of Immovable Cultural Heritage of Georgia the country (საქართველო, in the Caucasus — not the US state): 20,706 monuments and heritage objects published by the National Agency for Cultural Heritage Preservation of Georgia, searchable by name, place, category and listing status, with WGS84 coordinates and the listing decree that put each object on the register.
Tools
georgia_heritage_search(query?, region?, municipality?, settlement?, category?, status?, classification?, physical_state?, period?, listed_only?, world_significance_only?, with_coordinates_only?, limit?, offset?)— the register itself. Returns the true total for the filter (a separatereturnCountOnlycall, not the page size), the registry numberRegNum, the stableImmovableObjectID, coordinates, the listing decree number and date, and asource_url+portal_urlper record.georgia_heritage_object(reg_num? | object_id?)— one object in full: description, dating, initial and current function, physical state, listing paper trail, plus how many physical and visual protection zones the agency has drawn around it.georgia_heritage_nearby(latitude, longitude, radius_m?, limit?)— what is registered around a point, nearest first, with distance in metres.georgia_heritage_facets(field, region?, municipality?, limit?)— the distinct values the register actually stores for a field, with counts. This is the discovery step (see “Everything is in Georgian script” below).georgia_heritage_museums(query?, region?, municipality?, limit?)— the 20 museums the agency registers, with visitor contact details, opening hours and ticket price.
Auth
Keyless.
Data sources
- https://memkvidreoba.gov.ge/arcgisch/rest/services/Culture/CulturePortalService/MapServer/4 — monument / heritage-object register, 20,706 records. The layer the agency’s own public map viewer reads.
.../MapServer/5and.../MapServer/6— physical protection zones (9,741) and visual protection areas (9,731), keyed byImmovableObjectID..../MapServer/7— museum directory, 20 records.- Public register page per object:
https://memkvidreoba.gov.ge/objects/immovable/immovableObject?id=<ImmovableObjectID>
Unicode literals need the N prefix — without it every filter returns zero
The register is Georgian-script text in SQL Server NVARCHAR columns.
where=Municipality='მცხეთა' returns {"count":0}. where=Municipality=N'მცხეთა'
returns {"count":480}. Same for LIKE. There is no error either way — the
un-prefixed form is a clean 200 with an empty feature array, which is the
silent-zero failure class (docs/silent-zero-policy.md). Every literal this pack
puts in a where clause goes through sqlLit(), which adds the prefix.
Everything is in Georgian script, so a Latin query matches nothing
There is no English anywhere in the data — not names, not places, not the category vocabularies. A caller typing “church” or “Kakheti” would otherwise get a perfectly clean zero. Two mitigations:
LATIN_TERMS/LATIN_REGIONSmap the common heritage words, the 12 regions, the larger municipalities and the best-known monuments to the Georgian the register stores. Every entry was checked against a live non-zero count. The response reports what it actually searched infilters.query_terms, and anything it could not translate infilters.query_terms_unmapped.georgia_heritage_facetslists the exact stored values with counts, so a caller can read the Georgian for a region/municipality/category and filter on it directly. Every empty result points at it.
GLOSS adds *_en English labels beside the Georgian for the closed
vocabularies (status, category, classification, physical state, region) so a
caller who cannot read the script still gets legible output. It deliberately
does not attempt to translate free text — object names and descriptions come
back exactly as the agency wrote them.
Other things worth knowing
- Identifiers.
ImmovableObjectIDis present on every record;RegNumisnullfor many recorded-but-unnumbered objects, including major ones (the Mtskheta historical monuments group,ImmovableObjectID18026, has noRegNum). Key anything you store onImmovableObjectID, notOBJECTIDand notRegNum. - Coordinates.
XGris longitude andYGris latitude, both WGS84 — thex/yfields on the same layer are EPSG:32638 metres and are not what you want. Some records carry 0/null;with_coordinates_onlyfilters them out. statusvscategory. 10,822 of the 20,706 rows are recorded objects without listed status — surveyed, but not monuments.listed_only: truerestricts to the 9,883 that carry monument status. 1,799 are categorised as of national significance and 87 as of world significance.- One object can have several boundary polygons (a complex recorded in
parts), so a
RegNumlookup can match more than one row.georgia_heritage_objectreturns the first and reportsadditional_boundary_recordsrather than hiding them. nearbymeasures two different things. The radius filter runs against each object’s boundary polygon upstream;distance_mis computed from the register’s recorded point. A large site can therefore report a distance beyond the radius, which the response says indistance_note.- ArcGIS reports query errors inside a 200 with an
errorobject and no features. This pack raises those rather than returning an empty result. - Photo URLs are on non-standard ports (
:60,:8443) — they are handed to the caller as the agency published them, and are not fetched by this pack. CreatorName/EditorName/CreateDate/EditDateare never selected. They are the agency’s internal CMS bookkeeping — which staff member typed the row — not anything about the monument.- The register also covers heritage in historically Georgian territory outside
today’s borders (Türkiye, Azerbaijan, the North Caucasus) and in Abkhazia; the
Regionfacet shows those as small tails.
Tools
- georgia_heritage_search — Search the National Register of Immovable Cultural Heritage of Georgia — the country in the Caucasus (საქართველო), NOT the US state.
- georgia_heritage_object — Full register record for one Georgian (country) cultural-heritage object, by its registry number (reg_num / RegNum) or its stable
- georgia_heritage_nearby — Cultural-heritage monuments near a point in Georgia (the country), by latitude/longitude and radius. Returns each object with its
- georgia_heritage_facets — List the distinct values, with record counts, that the Georgian (country) heritage register actually uses for a field — region,
- georgia_heritage_museums — Museums registered by the National Agency for Cultural Heritage Preservation of Georgia (the country): name, region, municipality,
Tools
-
georgia_heritage_facets— List the distinct values, with record counts, that the Georgian (country) heritage register actually uses for a field — region, -
georgia_heritage_museums— Museums registered by the National Agency for Cultural Heritage Preservation of Georgia (the country): name, region, municipality, -
georgia_heritage_nearby— Cultural-heritage monuments near a point in Georgia (the country), by latitude/longitude and radius. Returns each object with its -
georgia_heritage_object— Full register record for one Georgian (country) cultural-heritage object, by its registry number (reg_num / RegNum) or its stable -
georgia_heritage_search— Search the National Register of Immovable Cultural Heritage of Georgia — the country in the Caucasus (საქართველო), NOT the US state.