georgia_heritage_facets
Pack: georgia-heritage · Endpoint: https://gateway.pipeworx.io/georgia-heritage/mcp
List the distinct values, with record counts, that the Georgian (country) heritage register actually uses for a field — region,
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
field | string | yes | One of: region, municipality, settlement, category, status, classification, physical_state, current_function, world_category, period. |
region | string | no | Optional: restrict the facet to one region (Georgian or English). |
municipality | string | no | Optional: restrict the facet to one municipality (Georgian or English). |
limit | number | no | Max distinct values, 1-500 (default 50), most frequent first. |
Example call
Arguments
{
"field": "municipality",
"region": "Samtskhe-Javakheti",
"limit": 5
}
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_facets","arguments":{"field":"municipality","region":"Samtskhe-Javakheti","limit":5}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('georgia_heritage_facets', {
"field": "municipality",
"region": "Samtskhe-Javakheti",
"limit": 5
});
More examples
{
"field": "physical_state",
"limit": 6
}
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.