geometry-convex-hull
Calculate the convex hull of a geometry using WKT format input. This tool, part of the PostGIS MCP Server, enables spatial analysis by identifying the smallest convex polygon enclosing a given set of points.
Instructions
Geometrinin konveks zarfını hesapla
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| geometry_wkt | Yes | WKT formatında geometri |
Implementation Reference
- server.ts:98-100 (schema)Zod schema definition for the input parameters of the geometry-convex-hull tool, expecting a geometry_wkt string.const GeometryConvexHullSchema = z.object({ geometry_wkt: z.string(), });
- server.ts:823-835 (registration)Registration of the geometry-convex-hull tool in the ListTools response, including name, description, and input schema.name: "geometry-convex-hull", description: "Geometrinin konveks zarfını hesapla", inputSchema: { type: "object", properties: { geometry_wkt: { type: "string", description: "WKT formatında geometri", }, }, required: ["geometry_wkt"], }, },