The GIS Data Conversion MCP is an MCP (Model Context Protocol) server that gives LLMs access to geographic data conversion tools.
This server uses various GIS libraries to allow LLMs to convert between different geographic data formats, coordinate systems, and spatial references.
- Reverse Geocoding - Convert coordinates to location information
- WKT/GeoJSON Conversion - Convert between Well-Known Text and GeoJSON formats
- CSV/GeoJSON Conversion - Transform tabular data with coordinates to GeoJSON and vice versa
- TopoJSON/GeoJSON Conversion - Convert between GeoJSON and TopoJSON (topology-preserving format)
- KML/GeoJSON Conversion - Transform KML files to GeoJSON format
Screen.Recording.2025-04-26.at.2.32.28.PM.mov
Screen.Recording.2025-04-27.at.3.18.53.PM.mov
To use this server with Claude Desktop, you need to configure it in the MCP settings:
For macOS:
Edit the file at '~/Library/Application Support/Claude/claude_desktop_config.json'
{
"mcpServers": {
"gis-dataconversion-mcp": {
"command": "npx",
"args": [
"-y",
"a11y-mcp-server"
]
}
}
}
For Windows:
Edit the file at %APPDATA%\Claude\settings\claude_mcp_settings.json
For Linux:
Edit the file at ~/.config/Claude/settings/claude_mcp_settings.json
Replace /path/to/axe-mcp-server/build/index.js
with the actual path to your compiled server file.
Converts Well-Known Text (WKT) to GeoJSON format.
Converts GeoJSON to Well-Known Text (WKT) format.
Converts CSV with geographic data to GeoJSON.
Parameters:
csv
(required): CSV string to convertlatfield
(required): Field name for latitudelonfield
(required): Field name for longitudedelimiter
(optional): CSV delimiter (default is comma)
Converts GeoJSON to CSV format.
Converts GeoJSON to TopoJSON format (more compact with shared boundaries).
Parameters:
geojson
(required): GeoJSON object to convertobjectName
(optional): Name of the TopoJSON object to create (default: "data")quantization
(optional): Quantization parameter for simplification (default: 1e4, 0 to disable)
Converts TopoJSON to GeoJSON format.
Parameters:
geojson
(required): GeoJSON object to convertobjectName
(optional): Name of the TopoJSON object to create (default: "data")
Converts KML to GeoJSON format.
Converts GeoJSON to KML format.
Converts latitude/longitude coordinates to location name using reverse geocoding.
- @modelcontextprotocol/sdk
- wellknown
- csv2geojson
- topojson-client
- topojson-server
- @tmcw/togeojson
- xmldom