Georgia (the country) — National Register of Immovable Cultural Heritage.
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Documented (README)
claude mcp add mcp-georgia-heritage -- npx -y @pipeworx/mcp-georgia-heritage{
"mcpServers": {
"mcp-georgia-heritage": {
"command": "npx",
"args": ["-y", "@pipeworx/mcp-georgia-heritage"]
}
}
}MCP Servers overview
# @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](https://pipeworx.io) — 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 separate
`returnCountOnly` call, not the page size), the registry number `RegNum`, the
stable `ImmovableObjectID`, coordinates, the listing decree number and date,
and a `source_url` + `portal_url` per 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/5` and `.../MapServer/6` — physical protection zones (9,741) and
visual protection areas (9,731), keyed by `ImmovableObjectID`.
- `.../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_REGIONS` map 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 in `filters.query_terms`, and
anything it could not translate in `filters.query_terms_unmapped`.
- `georgia_heritage_facets` lists 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.** `ImmovableObjectID` is present on every record; `RegNum` is
`null` for many recorded-but-unnumbered objects, including major ones (the
Mtskheta historical monuments group, `ImmovableObjectID` 18026, has no
`RegNum`). Key anything you store on `ImmovableObjectID`, not `OBJECTID` and
not `RegNum`.
- **Coordinates.** `XGr` is longitude and `YGr` is latitude, both WGS84 — the
`x`/`y` fields on the same layer are EPSG:32638 metres and are not what you
want. Some records carry 0/null; `with_coordinates_only` filters them out.
- **`status` vs `category`.** 10,822 of the 20,706 rows are *recorded objects
without listed status* — surveyed, but not monuments. `listed_only: true`
restricts 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 `RegNum` lookup can match more than one row.
`georgia_heritage_object` returns the first and reports
`additional_boundary_records` rather than hiding them.
- **`nearby` measures two different things.** The radius filter runs against each
object's boundary polygon upstream; `distance_m` is computed from the
register's recorded point. A large site can therefore report a distance beyond
the radius, which the response says in `distance_note`.
- **ArcGIS reports query errors inside a 200** with an `error` object 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` / `EditDate` are 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
`Region` facet shows those as small tails.
## Quick Start
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
```json
{
"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:
```json
{
"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:
```json
{
"mcpServers": {
"georgia-heritage": {
"command": "npx",
"args": ["-y", "@pipeworx/mcp-georgia-heritage"]
}
}
}
```
Or run it directly to confirm it starts:
```bash
npx -y @pipeworx/mcp-georgia-heritage
```
It 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
- [Docs and guides](https://pipeworx.io/docs)
- [pipeworx.io](https://pipeworx.io)
## License
MIT
What people ask about mcp-georgia-heritage
What is pipeworx-io/mcp-georgia-heritage?
+
pipeworx-io/mcp-georgia-heritage is mcp servers for the Claude AI ecosystem. Georgia (the country) — National Register of Immovable Cultural Heritage. It has 0 GitHub stars and its last recorded update is dated 2026-09-09.
How do I install mcp-georgia-heritage?
+
You can install mcp-georgia-heritage by cloning the repository (https://github.com/pipeworx-io/mcp-georgia-heritage) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is pipeworx-io/mcp-georgia-heritage safe to use?
+
Our security agent has analyzed pipeworx-io/mcp-georgia-heritage and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.
Who maintains pipeworx-io/mcp-georgia-heritage?
+
pipeworx-io/mcp-georgia-heritage is maintained by pipeworx-io. The last recorded GitHub activity is dated 2026-09-09, with 0 open issues.
Are there alternatives to mcp-georgia-heritage?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy mcp-georgia-heritage to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/pipeworx-io-mcp-georgia-heritage)<a href="https://claudewave.com/repo/pipeworx-io-mcp-georgia-heritage"><img src="https://claudewave.com/api/badge/pipeworx-io-mcp-georgia-heritage" alt="Featured on ClaudeWave: pipeworx-io/mcp-georgia-heritage" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!