georgia_heritage_nearby
Pack: georgia-heritage · Endpoint: https://gateway.pipeworx.io/georgia-heritage/mcp
Cultural-heritage monuments near a point in Georgia (the country), by latitude/longitude and radius. Returns each object with its
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
latitude | number | yes | WGS84 latitude, e.g. 41.8458 (Mtskheta). |
longitude | number | yes | WGS84 longitude, e.g. 44.7194. |
radius_m | number | no | Search radius in metres, 50-50000 (default 2000). |
limit | number | no | Max monuments, 1-200 (default 25). |
Example call
Arguments
{
"latitude": 41.8458,
"longitude": 44.7194,
"radius_m": 1500,
"limit": 3
}
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_nearby","arguments":{"latitude":41.8458,"longitude":44.7194,"radius_m":1500,"limit":3}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('georgia_heritage_nearby', {
"latitude": 41.8458,
"longitude": 44.7194,
"radius_m": 1500,
"limit": 3
});
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.