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

NameTypeRequiredDescription
latitudenumberyesWGS84 latitude, e.g. 41.8458 (Mtskheta).
longitudenumberyesWGS84 longitude, e.g. 44.7194.
radius_mnumbernoSearch radius in metres, 50-50000 (default 2000).
limitnumbernoMax 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.

Regenerated from source · build September 9, 2026