# GIS Data Conversion Server

The GIS Data Conversion MCP allows reverse geocoding, WKT/GeoJSON conversion, TopoJSON/ GeoJSON conversion, KML / GeoJSON conversion, and CSV conversion. The MCP allows LLMs to accurately convert GIS…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add ronantakizawa/gis-dataconvertersion-mcp

# Browse available tools
npx -y @smithery/cli@latest tool list ronantakizawa/gis-dataconvertersion-mcp

# Get full schema for a tool
npx -y @smithery/cli@latest tool get ronantakizawa/gis-dataconvertersion-mcp wkt_to_geojson

# Call a tool
npx -y @smithery/cli@latest tool call ronantakizawa/gis-dataconvertersion-mcp wkt_to_geojson '{}'
```

## Tools (9)

- `wkt_to_geojson` — Convert Well-Known Text (WKT) to GeoJSON format
- `geojson_to_wkt` — Convert GeoJSON to Well-Known Text (WKT) format
- `csv_to_geojson` — Convert CSV with geographic data to GeoJSON
- `geojson_to_csv` — Convert GeoJSON to CSV format
- `geojson_to_topojson` — Convert GeoJSON to TopoJSON format (more compact with shared boundaries)
- `topojson_to_geojson` — Convert TopoJSON to GeoJSON format
- `kml_to_geojson` — Convert KML to GeoJSON format
- `geojson_to_kml` — Convert GeoJSON to KML format
- `coordinates_to_location` — Convert latitude/longitude coordinates to location name using reverse geocoding

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get ronantakizawa/gis-dataconvertersion-mcp <tool-name>
```

---

Source: https://github.com/ronantakizawa/gis-dataconversion-mcp
