Skip to main content
Glama
receptopalak

PostGIS MCP Server

by receptopalak

geometry-union

Combine multiple geometries into a single geometry using WKT format. Facilitates spatial data integration and analysis within the PostGIS MCP Server.

Instructions

Birden fazla geometriyi birleştir

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
geometries_wktYesWKT formatında geometri dizisi

Implementation Reference

  • Zod schema defining the input structure for the geometry-union tool: an array of WKT geometries.
    const GeometryUnionSchema = z.object({
      geometries_wkt: z.array(z.string()),
    });
  • server.ts:794-807 (registration)
    Registration of the 'geometry-union' tool in the ListToolsRequestSchema response, including name, description, and input schema.
      name: "geometry-union",
      description: "Birden fazla geometriyi birleştir",
      inputSchema: {
        type: "object",
        properties: {
          geometries_wkt: {
            type: "array",
            description: "WKT formatında geometri dizisi",
            items: { type: "string" },
          },
        },
        required: ["geometries_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