georgia_heritage_object
Pack: georgia-heritage · Endpoint: https://gateway.pipeworx.io/georgia-heritage/mcp
Full register record for one Georgian (country) cultural-heritage object, by its registry number (reg_num / RegNum) or its stable
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
reg_num | string | no | Registry number as printed in the register, e.g. “4”. RegNum is null for objects recorded but not yet numbered — use object_id for those. |
object_id | number | no | ImmovableObjectID — the stable upstream identifier, present on every record. Prefer this for anything you store. |
Example call
Arguments
{
"object_id": 18026
}
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_object","arguments":{"object_id":18026}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('georgia_heritage_object', {
"object_id": 18026
});
More examples
{
"reg_num": "7035"
}
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.