The GeoServer MCP Server enables AI assistants to interact with geospatial data and services via the GeoServer REST API. It acts as a gateway using the Model Context Protocol (MCP) for managing geospatial resources.
Capabilities include:
🔍 List, create, and manage GeoServer workspaces and layers
🗺️ Execute spatial queries on vector data using CQL filters
🎨 Generate map images with WMS GetMap
🛠️ Create and apply SLD styles for map visualization
🗑️ Delete resources (workspaces, layers, styles, etc.)
📊 Retrieve detailed metadata about layers and workspaces
🌐 Interact with OGC-compliant web services (WMS, WFS)
GeoServer MCP Server
Version 0.5.0 (Beta) is under active development and will be released shortly. We are open to contributions and welcome developers to join us in building this project.
🎥 Demo
Related MCP server: MCP Google Map Server
📋 Table of Contents
🚀 Features
🔍 Query and manipulate GeoServer workspaces, layers, and styles
🗺️ Execute spatial queries on vector data
🎨 Generate map visualizations
🌐 Access OGC-compliant web services (WMS, WFS)
🛠️ Easy integration with MCP-compatible clients
📋 Prerequisites
Python 3.10 or higher
Running GeoServer instance with REST API enabled
MCP-compatible client (like Claude Desktop or Cursor)
Internet connection for package installation
🛠️ Installation
Choose the installation method that best suits your needs:
Installing via Smithery
To install GeoServer MCP Server for Claude Desktop automatically via Smithery:
🛠️ Installation (Docker)
The Docker installation is the quickest and most isolated way to run the GeoServer MCP server. It's ideal for:
Quick testing and evaluation
Production deployments
Environments where you want to avoid Python dependencies
Consistent deployment across different systems
Run geoserver-mcp:
Configure the clients:
If you are using Claude Desktop, edit claude_desktop_config.json
If you are using Cursor, Create .cursor/mcp.json
🛠️ Installation (pip)
The pip installation is recommended for most users who want to run the server directly on their system. This method is best for:
Regular users who want to run the server locally
Systems where you have Python 3.10+ installed
Users who want to customize the server configuration
Development and testing purposes
Install uv package manager.
Create the Virtual Environment (Python 3.10+):
Linux/Mac:
Windows PowerShell:
Install the package using pip:
Configure GeoServer connection:
Linux/Mac:
Windows PowerShell:
Start the server:
If you are going to use Claude desktop you don't need this step. For cursor or your own custom client you should run the following code.
Linux:
or
Windows PowerShell:
or
Configure Clients:
If you are using Claude Desktop, edit claude_desktop_config.json
If you are using Cursor, Create .cursor/mcp.json
Windows:
Linux:
🛠️ Development installation
The development installation is designed for contributors and developers who want to modify the codebase. This method is suitable for:
Developers contributing to the project
Users who need to modify the source code
Testing new features
Debugging and development purposes
Install uv package manager.
Create the Virtual Environment (Python 3.10+):
Install the package using pip:
Configure GeoServer connection:
Linux/Mac:
Windows PowerShell:
Start the server:
If you are going to use Claude desktop you don't need this step. For cursor or your own custom client you should run the following code.
Linux:
or
Windows PowerShell:
or
Configure Clients:
If you are using Claude Desktop, edit claude_desktop_config.json
If you are using Cursor, Create .cursor/mcp.json
Windows:
Linux:
File Storage and --storage Usage
GeoServer MCP server supports an optional --storage flag to specify a base directory for all file read/write operations, such as uploading shapefiles, GeoTIFFs, or exporting results.
Overview
The
--storageflag sets the root folder for file operations from all data-related tools.You may supply relative paths (relative to storage root) or absolute paths (bypassing the storage root) as arguments to relevant tools.
If
--storageis not set, paths are resolved as provided by the user (relative to working directory or absolute).
CLI Example
This sets D:/my/data/dir as the base path for all files.
Example tool call in Python:
Absolute paths (e.g. 'C:/input/other.shp') are always used as-is.
When Running in Docker
If using Docker, ensure the storage directory is mounted as a volume, e.g.:
Then launch the server with:
Best Practices
Use relative paths when interacting with the API/tools as it keeps your setup portable.
For remote or container deployment, always ensure your file data is accessible within the container (use Docker volumes if needed).
Check tool docstrings for which arguments use the storage system.
The --storage system streamlines file management for all users and makes deployment much more flexible!
🛠️ Available Tools
This section details all the available tools and resources exposed by the GeoServer MCP server. These tools allow LLMs to interact with GeoServer's REST API for comprehensive geospatial data management.
🌍 Resource Endpoints
Resource endpoints provide direct access to GeoServer resources via a URI pattern.
Resource URI | Description |
| List available workspaces |
| Get information about a specific layer |
| Handle WMS resource requests |
| Handle WFS resource requests |
📦 Workspace Management
Tool | Description |
| List available workspaces in GeoServer |
| Create a new workspace in GeoServer |
📁 Datastore & Coveragestore Management
Tool | Description |
| Create a new datastore in the given workspace |
| Create a new featurestore in the given workspace |
| Create a GeoPackage (GPKG) datastore |
| Create an ESRI Shapefile datastore |
| Create a new coveragestore in a workspace |
| Delete a coveragestore from a workspace |
| Get details about a single coveragestore |
| Get all coveragestores for a workspace |
| Get a specific datastore by name |
| List all datastores in the given workspace |
🗺️ Layer Management
Tool | Description |
| Get detailed information about a layer |
| List layers in GeoServer, optionally filtered by workspace |
| Create a new layer in GeoServer |
| Delete a resource from GeoServer (generic) |
🧩 Layer Group Management
Tool | Description |
| Create a new layer group with specific layers and (optionally) styles |
| Get a layer group from a workspace |
| List all layer groups in a workspace |
| Add a specific layer to a layer group |
| Remove a layer from a group |
| Delete a layer group from a workspace |
| Update a layer group's details and configuration |
👥 User & User Group Management
Tool | Description |
| Create a new user for GeoServer security |
| Delete a user by name |
| List all users in the GeoServer instance |
| Modify an existing user's properties |
| Create a new user group |
| Delete a user group |
| Return all user groups |
📊 Feature Type & Attribute Management
Tool | Description |
| Query features from a vector layer using CQL filter |
| Publish an existing featurestore |
| Publish a featurestore using a SQL view definition |
| Edit the settings of a feature type in a store |
| List all feature types in a given store |
| Get feature attribute schema/details |
🎨 Style Management
Tool | Description |
| Create a new SLD style in GeoServer |
| Assign/publish a style to a layer |
| Create a categorized style for features |
| Create a classified style for features |
| Create a raster coverage style |
| Create a simple outline-only style for features |
⚙️ System & Service Operations
Tool | Description |
| Get GeoServer manifest metadata/details |
| Obtain general server status |
| Get system status overview/info from GeoServer |
| Fetch GeoServer version string |
| Reload catalog and config from disk |
| Reset all GeoServer caches/connections |
| Update selected OGC service options |
| Add or update a time dimension for a coverage store (for time series) |
📝 Style XML Utilities
Tool | Description |
| Generate SLD for categorized vector style |
| Get SLD XML for classified vector style |
| Generate color map entries for raster SLD |
| Generate XML for raster/coverage SLD |
| XML for outline-only style for a geometry |
🛠️ Client Development
If you're planning to develop your own client to interact with the GeoServer MCP server, you can find inspiration in the example client implementation at examples/client.py. This example demonstrates:
How to establish a connection with the MCP server
How to send requests and handle responses
Basic error handling and connection management
Example usage of various tools and operations
The example client serves as a good starting point for understanding the protocol and implementing your own client applications.
Also, here is the example usgage:
List Workspaces
Get Layer Information
Query Features
Generate Map
🔮 Planned Features
Coverage and raster data management
Security and access control
Advanced styling capabilities
WPS processing operations
GeoWebCache integration
🤝 Contributing
We welcome contributions! Here's how you can help:
Fork the repository
Create a feature branch (
git checkout -b feature/AmazingFeature)Commit your changes (
git commit -m 'Add some AmazingFeature')Push to the branch (
git push origin feature/AmazingFeature)Open a Pull Request
Please ensure your PR description clearly describes the problem and solution. Include the relevant issue number if applicable.
📄 License
This project is licensed under the MIT License - see the LICENSE file for details.
🔗 Related Projects
Model Context Protocol - The core MCP implementation
GeoServer REST API - Official GeoServer REST documentation
GeoServer REST Python Client - Python client for GeoServer REST API
🌐 See Also: GIS MCP
For broader geospatial data automation and even more GIS-related MCP features, see GIS MCP by mahdin75.
📞 Support
For support, please Open an issue