Georgia Heritage
БесплатноНе проверенGeorgia (the country) — National Register of Immovable Cultural Heritage.
Описание
Georgia (the country) — National Register of Immovable Cultural Heritage.
README
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.
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-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
License
MIT
Установить Georgia Heritage в Claude Desktop, Claude Code, Cursor
unyly install georgia-heritageСтавит в Claude Desktop, Claude Code, Cursor и VS Code — сам разбирается с npx, uvx и сборкой из исходников.
Впервые? Поставь CLI: curl -fsSL https://unyly.org/install | sh
Или настроить вручную
Выполни в терминале:
claude mcp add georgia-heritage -- npx -y github:pipeworx-io/mcp-georgia-heritageПошаговые гайды: как установить Georgia Heritage
FAQ
Georgia Heritage MCP бесплатный?
Да, Georgia Heritage MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Georgia Heritage?
Нет, Georgia Heritage работает без API-ключей и переменных окружения.
Georgia Heritage — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Georgia Heritage в Claude Desktop, Claude Code или Cursor?
Открой Georgia Heritage на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
GitHub
PRs, issues, code search, CI status
автор: GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
автор: mcpdotdirectAmap Maps Mcp Server
MCP server for using the AMap Maps API
автор: duxiaohuiSupabase
Database, auth and storage
автор: SupabaseEverything
Reference / test server with prompts, resources, and tools.
Git
Tools to read, search, and manipulate Git repositories.
Sequential Thinking
Dynamic and reflective problem-solving through thought sequences.
Time
Time and timezone conversion capabilities.
Compare Georgia Heritage with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
