Georgia Heritage

live Geography

Georgia (the country) — National Register of Immovable Cultural Heritage.

5 tools
0ms auth
free tier 50 calls/day

Tools

georgia_heritage_object

Full register record for one Georgian (country) cultural-heritage object, by its registry number (reg_num / RegNum) or its stable

No parameters required.

Try it
georgia_heritage_nearby

Cultural-heritage monuments near a point in Georgia (the country), by latitude/longitude and radius. Returns each object with its

No parameters required.

Try it
georgia_heritage_facets

List the distinct values, with record counts, that the Georgian (country) heritage register actually uses for a field — region,

No parameters required.

Try it
georgia_heritage_museums

Museums registered by the National Agency for Cultural Heritage Preservation of Georgia (the country): name, region, municipality,

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/georgia-heritage/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/georgia-heritage/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"georgia_heritage_search","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("georgia_heritage_search", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("georgia (the country) — national register of immovable cultural heritage");