Geometry primitivesFree tier

coordinate_transform

Reproject a WKT geometry from one SRID to another. Both SRIDs must be in the curated allowlist: 4326 (WGS84), 3857 (Web Mercator), 3003/3004 (Gauss-Boaga Italy), 4258 (ETRS89), 6707/6708 (RDN2008 / Italy), 32632/32633 (UTM 32N / 33N).

Use cases

  • Convert legacy Italian Gauss-Boaga (EPSG:3003) coordinates to WGS84 for mapping.
  • Reproject an OMI polygon (often shipped in 32632) into 4326 to match other tools.
  • Send Web Mercator (3857) bounds back to a Leaflet/MapLibre client.

Arguments

NameTypeRequiredDescription
geom_wkt string required Input WKT.
from_srid integer required Source SRID (allowlist).
to_srid integer required Target SRID (allowlist).

Example request

curl
bash
curl -X POST https://mcp.qubitdata.it/mcp \
  -H "Authorization: Bearer $QUBITDATA_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "coordinate_transform",
      "arguments": {
            "geom_wkt": "POINT(1518000 5034000)",
            "from_srid": 3003,
            "to_srid": 4326
      }
    }
  }'

Example response

JSON-RPC 2.0 result
json
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "content": [
      {
        "type": "text",
        "text": "{\n  \"wkt\": \"POINT(9.1900 45.4642)\",\n  \"from_srid\": 3003,\n  \"to_srid\": 4326\n}"
      }
    ]
  }
}

Prompts to try

Drop these into Claude Desktop, Cursor, or any MCP-aware client wired to https://mcp.qubitdata.it/mcp.

  • Claude Desktop
    Convert POINT(1518000 5034000) from EPSG:3003 to EPSG:4326.
  • Cursor
    Reproject every polygon in my batch from 32632 to 4326.
  • Custom MCP client
    Project WGS84 bounds into Web Mercator for the front-end map.

Related tools

geometry_ops · geometry_validate

Get started

Sign up for a free key to call this tool from your agent. Need a wider geo cap or higher quota? See pricing.

Last updated: