Skip to main content
Glama

validate-geometry

Check the validity of geometries in WKT format using PostGIS MCP Server's spatial database capabilities to ensure accurate spatial data processing.

Instructions

Geometrinin geçerliliğini kontrol et

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
geometry_wktYesWKT formatında geometri

Implementation Reference

  • Zod input schema definition for the 'validate-geometry' tool, specifying geometry_wkt as a required string.
    const ValidateGeometrySchema = z.object({ geometry_wkt: z.string(), });
  • server.ts:839-851 (registration)
    Registration of the 'validate-geometry' tool in the ListToolsRequestSchema handler. Includes name, description, and inputSchema matching the Zod schema. Note: No dedicated handler implementation found in CallToolRequestSchema switch statement; falls back to default case.
    name: "validate-geometry", description: "Geometrinin geçerliliğini kontrol et", inputSchema: { type: "object", properties: { geometry_wkt: { type: "string", description: "WKT formatında geometri", }, }, required: ["geometry_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