GIS

v1.0.0โ€ขDeveloper Toolsโ€ขstable

๐Ÿ  โ€“ A Model Context Protocol (MCP) server implementation that connects Large Language Models (LLMs) to GIS operations using GIS libraries, enabling AI assistants to perform accurate geospatial operations and transformations.

gis-mcp-servermcpai-integration
Share:
155
Stars
0
Downloads
0
Weekly
0/5

What is GIS?

GIS is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to ๐Ÿ  โ€“ a model context protocol (mcp) server implementation that connects large language models (llms) to gis operations using gis libraries, enabling ai assistants to perform accurate geospatial operat...

๐Ÿ  โ€“ A Model Context Protocol (MCP) server implementation that connects Large Language Models (LLMs) to GIS operations using GIS libraries, enabling AI assistants to perform accurate geospatial operations and transformations.

This server falls under the Developer Tools category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • ๐Ÿ  โ€“ A Model Context Protocol (MCP) server implementation tha

Use Cases

Perform geospatial operations and transformations with LLMs.
mahdin75

Maintainer

LicenseMIT License
Languagepython
Versionv1.0.0
UpdatedMay 19, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx gis-mcp-server

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use GIS

The GIS MCP Server bridges Large Language Models and professional geospatial computing by exposing 92 tools across Shapely, PyProj, GeoPandas, Rasterio, and PySAL through the Model Context Protocol. It enables AI assistants to perform real coordinate transformations, buffer geometry, run spatial statistics, process raster imagery, and generate interactive web maps โ€” all from natural language. Geospatial analysts, researchers, and GIS developers use it to accelerate workflows that previously required writing Python scripts manually.

Prerequisites

  • Python 3.10 or higher
  • pip and optionally uv for virtual environment management
  • Docker (optional, for containerized deployment)
  • Familiarity with GIS concepts such as CRS, shapefiles, and raster data
  • An MCP-compatible client such as Claude Desktop
1

Install the gis-mcp package

Create a Python 3.10 virtual environment and install the package using uv or pip. The package name on PyPI is gis-mcp.

pip install uv
uv venv --python=3.10
source .venv/bin/activate
uv pip install gis-mcp
2

Start the server in stdio mode (default)

Run the server with the default stdio transport for use with local MCP clients like Claude Desktop.

gis-mcp
3

Optional: run in HTTP mode for network access

Set the transport environment variable to http and specify a port if you need remote or multi-client access.

export GIS_MCP_TRANSPORT=http
export GIS_MCP_PORT=8080
gis-mcp
4

Optional: run with Docker

Build and run the container image if you prefer an isolated deployment.

docker build -t gis-mcp .
docker run -p 9010:9010 gis-mcp
5

Add the server to your MCP client configuration

Configure Claude Desktop or another MCP client to launch the gis-mcp server using the stdio command.

GIS Examples

Client configuration

Add this to your claude_desktop_config.json to connect Claude Desktop to the GIS MCP server running in stdio mode.

{
  "mcpServers": {
    "gis-mcp": {
      "command": "gis-mcp",
      "args": [],
      "env": {
        "GIS_MCP_TRANSPORT": "stdio"
      }
    }
  }
}

Prompts to try

Use these prompts to perform geospatial operations through your AI assistant once the server is connected.

- "Create a 500-meter buffer around the point at longitude -73.935, latitude 40.730"
- "Transform the coordinates [0, 0] from EPSG:4326 to EPSG:3857"
- "Load buildings.shp and calculate the area of each polygon in square meters"
- "Generate an interactive web map showing the shapefile layers I just uploaded"
- "Run a Moran's I spatial autocorrelation test on this dataset and explain the results"

Troubleshooting GIS

Import errors for GDAL or rasterio when starting the server

Rasterio and GDAL can have system-level dependencies. On macOS install GDAL via Homebrew ('brew install gdal') before running 'uv pip install gis-mcp'. On Ubuntu use 'apt-get install gdal-bin libgdal-dev'.

Server starts but tools are not visible in the MCP client

Ensure GIS_MCP_TRANSPORT is set to 'stdio' when running locally. HTTP mode (port 8080) requires the client to connect via the /mcp endpoint, not stdio. Restart Claude Desktop after updating the config.

Coordinate transformation returns unexpected results

Verify you are passing coordinates in the correct order for the source CRS. EPSG:4326 uses [longitude, latitude] order. Check the source_crs and target_crs EPSG codes are correct for your dataset.

Frequently Asked Questions about GIS

What is GIS?

GIS is a Model Context Protocol (MCP) server that ๐Ÿ  โ€“ a model context protocol (mcp) server implementation that connects large language models (llms) to gis operations using gis libraries, enabling ai assistants to perform accurate geospatial operations and transformations. It connects AI assistants to external tools and data sources through a standardized interface.

How do I install GIS?

Follow the installation instructions on the GIS GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.

Which AI clients work with GIS?

GIS works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is GIS free to use?

Yes, GIS is open source and available under the MIT License license. You can use it freely in both personal and commercial projects.

Browse More Developer Tools MCP Servers

Explore all developer tools servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "gis-mcp-server": { "command": "npx", "args": ["-y", "gis-mcp-server"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide โ†’

Ready to use GIS?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides