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

NameTypeRequiredDescription
querystringnoFree text over object name, settlement, address and description. Georgian script is used verbatim; English is translated where known (e.g. “monastery” → მონასტერი).
regionstringnoRegion, Georgian or English (e.g. “Kakheti”, “Samtskhe-Javakheti”, “კახეთი”).
municipalitystringnoMunicipality, Georgian or English (e.g. “Mtskheta”, “მცხეთა”).
settlementstringnoSettlement / village name.
categorystringnoCategoryName value, e.g. “ეროვნული” (national significance). Use georgia_heritage_facets to list them.
statusstringnoStatusName value, e.g. “კულტურული მემკვიდრეობის ძეგლი” (listed monument).
classificationstringnoClassification value, e.g. “არქეოლოგიური” (archaeological), “არქიტექტურის” (architectural).
physical_statestringnoPhysicalState value, e.g. “დანგრეული” (ruined), “კარგი” (good).
periodstringnoSubstring of the Period field, e.g. “მე-19 ს.” for the 19th century.
listed_onlybooleannoOnly objects that carry monument status (excludes the ~10,800 recorded objects with no listed status).
world_significance_onlybooleannoOnly the 87 objects categorised as of world significance (მსოფლიო მნიშვნელობის).
with_coordinates_onlybooleannoOnly records that carry usable WGS84 coordinates.
limitnumbernoRecords per page, 1-200 (default 25).
offsetnumbernoPagination 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.

Regenerated from source · build September 9, 2026