Skip to main content
Glama

geometry-intersection

Find the intersection of two geometries in WKT format using PostGIS MCP Server for spatial database functionality.

Instructions

İki geometrinin kesişimini bul

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
geometry1_wktYesBirinci geometri (WKT)
geometry2_wktYesİkinci geometri (WKT)

Implementation Reference

  • Zod schema defining the input parameters for the geometry-intersection tool (geometry1_wkt and geometry2_wkt as strings).
    const GeometryIntersectionSchema = z.object({ geometry1_wkt: z.string(), geometry2_wkt: z.string(), });
  • server.ts:775-792 (registration)
    Registration of the geometry-intersection tool in the ListTools response, including name, description, and JSON input schema.
    { name: "geometry-intersection", description: "İki geometrinin kesişimini bul", inputSchema: { type: "object", properties: { geometry1_wkt: { type: "string", description: "Birinci geometri (WKT)", }, geometry2_wkt: { type: "string", description: "İkinci geometri (WKT)", }, }, required: ["geometry1_wkt", "geometry2_wkt"], }, },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/receptopalak/postgis-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server