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
| Name | Required | Description | Default |
|---|---|---|---|
| geometry_wkt | Yes | WKT formatında geometri |
Implementation Reference
- server.ts:94-96 (schema)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"], }, },