georgia_heritage_search
Pack: georgia-heritage · Endpoint: https://gateway.pipeworx.io/georgia-heritage/mcp
Search the National Register of Immovable Cultural Heritage of Georgia — the country in the Caucasus (საქართველო), NOT the US state.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Free text over object name, settlement, address and description. Georgian script is used verbatim; English is translated where known (e.g. “monastery” → მონასტერი). |
region | string | no | Region, Georgian or English (e.g. “Kakheti”, “Samtskhe-Javakheti”, “კახეთი”). |
municipality | string | no | Municipality, Georgian or English (e.g. “Mtskheta”, “მცხეთა”). |
settlement | string | no | Settlement / village name. |
category | string | no | CategoryName value, e.g. “ეროვნული” (national significance). Use georgia_heritage_facets to list them. |
status | string | no | StatusName value, e.g. “კულტურული მემკვიდრეობის ძეგლი” (listed monument). |
classification | string | no | Classification value, e.g. “არქეოლოგიური” (archaeological), “არქიტექტურის” (architectural). |
physical_state | string | no | PhysicalState value, e.g. “დანგრეული” (ruined), “კარგი” (good). |
period | string | no | Substring of the Period field, e.g. “მე-19 ს.” for the 19th century. |
listed_only | boolean | no | Only objects that carry monument status (excludes the ~10,800 recorded objects with no listed status). |
world_significance_only | boolean | no | Only the 87 objects categorised as of world significance (მსოფლიო მნიშვნელობის). |
with_coordinates_only | boolean | no | Only records that carry usable WGS84 coordinates. |
limit | number | no | Records per page, 1-200 (default 25). |
offset | number | no | Pagination offset into the full result set (default 0). |
Example call
Arguments
{
"query": "monastery",
"region": "Kakheti",
"limit": 2
}
curl
curl -X POST https://gateway.pipeworx.io/georgia-heritage/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"georgia_heritage_search","arguments":{"query":"monastery","region":"Kakheti","limit":2}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('georgia_heritage_search', {
"query": "monastery",
"region": "Kakheti",
"limit": 2
});
More examples
{
"municipality": "Mtskheta",
"listed_only": true,
"limit": 2
}
{
"query": "სვეტიცხოველი",
"limit": 2
}
{
"world_significance_only": true,
"limit": 2
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"georgia-heritage": {
"url": "https://gateway.pipeworx.io/georgia-heritage/mcp"
}
}
}
See Getting Started for client-specific install steps.