georgia-heritage
Provides access to Georgia's National Register of Immovable Cultural Heritage through ArcGIS REST services, enabling search of monuments and heritage objects, retrieval of object details, nearby heritage searches, facet discovery, and museum directory queries.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@georgia-heritageshow me heritage sites near Tbilisi"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@pipeworx/georgia-heritage
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.
Part of Pipeworx — an MCP gateway connecting AI agents to 1549+ live data sources.
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.
Related MCP server: mcp-arcgis-chatham
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.
Quick Start
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"georgia-heritage": {
"url": "https://gateway.pipeworx.io/georgia-heritage/mcp"
}
}
}What this endpoint actually serves
tools/list at https://gateway.pipeworx.io/georgia-heritage/mcp returns the tools in the table
above plus the shared Pipeworx meta-tools — ask_pipeworx,
discover_tools, search_within, remember/recall and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's initialize response states its exact scope, and
is the authoritative answer for a given day.
This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
ask_pipeworx, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.
Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}Both URLs reach the same gateway and the same 1549+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
Standalone (no gateway account)
This package also runs as a local stdio MCP server — no Pipeworx account, no gateway round-trip:
{
"mcpServers": {
"georgia-heritage": {
"command": "npx",
"args": ["-y", "@pipeworx/mcp-georgia-heritage"]
}
}
}Or run it directly to confirm it starts:
npx -y @pipeworx/mcp-georgia-heritageIt speaks MCP over stdin/stdout and answers initialize/tools/list/tools/call
for only this pack's tools — none of the shared meta-tools the gateway
connection above adds. Same source, same tools, no ask_pipeworx routing.
Using with ask_pipeworx
Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:
ask_pipeworx({ question: "your question about Georgia Heritage data" })The gateway picks the right tool and fills the arguments automatically.
More
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Read-only OpenHeritage search for genealogy and cultural heritage records.
Read-only MCP for heritage travel: search 500+ UNESCO destinations by region and intent.
Georgia education, Census, and immigration data: query, filter, aggregate, and link datasets.
Official public & government APIs, dozens of countries: registers, statistics, open data. Keyless.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceProvides access to European cultural heritage collections and artworks, allowing users to search for items, get detailed information about specific artworks, browse collections by institution, and receive AI-powered recommendations based on interests.1-
- AlicenseNot gradedqualityCmaintenanceEnables querying Chatham County, Georgia open geospatial datasets (parcels, addresses, zoning, public works) through ArcGIS Feature Services, with tools to search datasets, query layers, and retrieve layer schema.9MIT
- AlicenseNot gradedqualityCmaintenanceEnables searching and querying Glynn County, Georgia open geospatial datasets (parcels, zoning, addresses, public works) via ArcGIS Feature Services, with tools for dataset discovery, layer querying, and schema inspection.6MIT
- AlicenseNot gradedqualityCmaintenanceEnables searching and querying open geospatial datasets from the City of Peachtree Corners GIS (ArcGIS), including parcels, zoning, transport, and city services.6MIT