QGIS MCP
The QGIS MCP server connects AI agents like Claude to QGIS, enabling direct programmatic control through 100+ tools:
Project Management: Load, create, save, and inspect QGIS projects; manage CRS, variables, and project information.
Layer Management: Add vector (Shapefile, GeoJSON, GeoPackage), raster (GeoTIFF), web (XYZ/WMS/WFS), or in-memory layers; remove, find, duplicate, reorder, and set layer visibility.
Feature Editing: Query, add, update, and delete features; filter with QGIS expressions; select/deselect features; compute field statistics.
Styling & Labeling: Apply single, categorized, or graduated symbology; load/save QML style files; configure labeling (field, font, color).
Map Canvas Control: Get/set canvas extent, scale, and rotation; zoom to layers; take screenshots; render map to image/file.
Processing & Analysis: Execute any QGIS Processing algorithm; list, search, and get help for algorithms.
Print Layouts & Atlas: Create layouts; add map, label, legend, scalebar, picture, and table items; export to PDF/PNG/JPG/SVG; configure and export atlases.
SQL & Expressions: Execute cross-layer SQL queries; evaluate and validate QGIS expressions; identify features.
Layer Tree & Groups: Get full tree structure; create groups; move layers between groups; manage layer order.
Field Management: Add, delete, and rename fields; add table joins between layers.
CRS & Coordinates: Get/set layer or project CRS; transform single points, multiple points, or bounding boxes between CRS systems.
Bookmarks & Map Themes: Create, apply, and remove spatial bookmarks and map visibility/theme presets.
Plugin Management: List, inspect, and reload QGIS plugins.
System & Diagnostics: Ping, run diagnostics, get QGIS info, read message logs, get/set QGIS settings and project variables, execute arbitrary PyQGIS code.
Batch Operations: Execute multiple commands in a single request to reduce overhead (with restrictions on destructive commands).
Enables direct control over QGIS to manage map layers, edit features, execute processing algorithms, render map outputs, and manage project settings and layouts.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@QGIS MCPLoad the cities layer and style it by population with 5 classes."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
QGIS MCP
Connect QGIS to Claude AI through the Model Context Protocol (MCP), enabling Claude to directly control QGIS - manage layers, edit features, run processing algorithms, render maps, and more.
118 MCP tools covering layer management, feature editing, processing, rendering, styling, layout & atlas authoring, cross-layer SQL, plugin development, and system management. Compatible with QGIS 3.28–4.x. Works with Claude Code, Codex CLI, Gemini CLI, Qwen Code, Kimi Code CLI, GitHub Copilot CLI, opencode, LM Studio, Claude Desktop, Cursor, VS Code, Windsurf, Zed, and more.
Architecture
Claude ←→ MCP Server (FastMCP) ←→ TCP socket ←→ QGIS Plugin (QTimer) ←→ PyQGIS APIQGIS Plugin (
qgis_mcp_plugin/) - Runs inside QGIS. Non-blocking TCP socket server that processes JSON commands within QGIS's event loop.MCP Server (
src/qgis_mcp/server.py) - Runs outside QGIS. Exposes QGIS operations as MCP tools via FastMCP.
Related MCP server: LocuSync Server
Installation
No clone needed. Requires QGIS 3.28+ and uv.
1. Install the QGIS plugin
In QGIS: Plugins > Manage and Install Plugins > search QGIS MCP > Install.
Restart QGIS and click Start Server in the QGIS MCP dock widget.
2. Connect your coding agent
claude mcp add -s user qgis -- uvx --from https://github.com/nkarasiak/qgis-mcp/archive/refs/heads/main.zip qgis-mcp-serverScope reference:
Flag | Stored in | Visible to |
|
| You, this project |
|
| Whole team, this project |
|
| You, every project |
codex mcp add qgis -- uvx --from https://github.com/nkarasiak/qgis-mcp/archive/refs/heads/main.zip qgis-mcp-serverOr edit ~/.codex/config.toml directly:
[mcp_servers.qgis]
command = "uvx"
args = ["--from", "https://github.com/nkarasiak/qgis-mcp/archive/refs/heads/main.zip", "qgis-mcp-server"]Add to ~/.gemini/settings.json:
{
"mcpServers": {
"qgis": {
"command": "uvx",
"args": ["--from", "https://github.com/nkarasiak/qgis-mcp/archive/refs/heads/main.zip", "qgis-mcp-server"]
}
}
}Same layout as Gemini CLI. Add to ~/.qwen/settings.json:
{
"mcpServers": {
"qgis": {
"command": "uvx",
"args": ["--from", "https://github.com/nkarasiak/qgis-mcp/archive/refs/heads/main.zip", "qgis-mcp-server"]
}
}
}Add to ~/.kimi-code/mcp.json (or $KIMI_CODE_HOME/mcp.json). A .kimi-code/mcp.json
in the working directory overrides it for that project.
{
"mcpServers": {
"qgis": {
"command": "uvx",
"args": ["--from", "https://github.com/nkarasiak/qgis-mcp/archive/refs/heads/main.zip", "qgis-mcp-server"]
}
}
}Kimi has no mcp add subcommand - edit the JSON or use the /mcp-config TUI.
Add to ~/.copilot/mcp-config.json (directory overridable via $COPILOT_HOME):
{
"mcpServers": {
"qgis": {
"command": "uvx",
"args": ["--from", "https://github.com/nkarasiak/qgis-mcp/archive/refs/heads/main.zip", "qgis-mcp-server"]
}
}
}Add to ~/.lmstudio/mcp.json (%USERPROFILE%\.lmstudio\mcp.json on Windows):
{
"mcpServers": {
"qgis": {
"command": "uvx",
"args": ["--from", "https://github.com/nkarasiak/qgis-mcp/archive/refs/heads/main.zip", "qgis-mcp-server"]
}
}
}Add to opencode.json at your project root:
{
"mcp": {
"qgis": {
"type": "local",
"command": ["uvx", "--from", "https://github.com/nkarasiak/qgis-mcp/archive/refs/heads/main.zip", "qgis-mcp-server"],
"enabled": true
}
}
}Hermes stores MCP servers in config.yaml under an mcpServers block. A standalone mcp.json is ignored. You also need a small .bat launcher - running uvx directly inside Hermes causes a venv conflict (ModuleNotFoundError: No module named 'pydantic_core._pydantic_core').
Step 1 - Create %APPDATA%\Hermes\qgis-mcp-launch.bat:
@echo off
REM Clears Hermes's venv vars so uvx uses a clean Python environment.
set VIRTUAL_ENV=
set PYTHONPATH=
set PYTHONHOME=
uvx --from "https://github.com/nkarasiak/qgis-mcp/archive/refs/heads/main.zip" qgis-mcp-serverStep 2 - Add to %APPDATA%\Hermes\config.yaml:
mcpServers:
qgis:
command: "C:\\Users\\<you>\\AppData\\Roaming\\Hermes\\qgis-mcp-launch.bat"
args: []Replace <you> with your Windows username. Restart Hermes, then verify with:
Call the QGIS ping tool.Tip: The QGIS plugin's Setup & Configurator dialog has a hermes entry in the client dropdown. Select it and click Copy to get the bat file and YAML pre-filled with your local paths.
For the full guide see docs/agent-integration.md.
opencode (which runs Nous/Hermes and other models) is supported directly by the installer:
python install.py --non-interactive --clients opencodeThis writes the correct config block to ~/.config/opencode/config.json
(%APPDATA%\opencode\config.json on Windows).
To configure manually, add to your opencode.json or global opencode config:
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"qgis": {
"type": "local",
"command": [
"uvx",
"--from", "https://github.com/nkarasiak/qgis-mcp/archive/refs/heads/main.zip",
"qgis-mcp-server"
]
}
}
}Any other agent or client that supports the MCP stdio transport can also use this server. Generic config (exact key names vary by client - see your agent's docs):
{
"mcpServers": {
"qgis": {
"command": "uvx",
"args": [
"--from", "https://github.com/nkarasiak/qgis-mcp/archive/refs/heads/main.zip",
"qgis-mcp-server"
]
}
}
}After starting the agent, verify by asking it to call the ping tool - it
should return {"pong": true} when the QGIS plugin is running.
For a full setup guide, troubleshooting steps, and compound-tool mode configuration see
docs/agent-integration.md.
Add to your client's MCP config file:
{
"mcpServers": {
"qgis": {
"command": "uvx",
"args": [
"--from", "https://github.com/nkarasiak/qgis-mcp/archive/refs/heads/main.zip",
"qgis-mcp-server"
]
}
}
}Usage
Start the plugin - In QGIS, click the MCP toolbar button (or
Plugins>QGIS MCP) and click "Start Server"Talk to Claude - The MCP tools will appear automatically. Ask Claude to work with your QGIS project.
Example prompt
You have access to QGIS tools. Do the following:
1. Ping to check the connection
2. Create a new project and save it at "/tmp/my_project.qgz"
3. Load the vector layer "world_map.gpkg" available in Qgis ("resources/data/world_map.gpkg")
4. Filter "USA" from the field "adm0_a3"
6. Render the map and show me the result
7. Save the projectUpdating
The plugin (inside QGIS) and the MCP server (outside QGIS) must stay in sync - a newer server sending a command the older plugin doesn't know will return an error. Run diagnose after any update to verify both sides match.
Component | Remote install | Local install ( |
QGIS plugin |
| Same - Plugin Manager picks up the new version from QGIS Hub |
MCP server | uvx caches the downloaded archive - force an update with |
|
To auto-update instead, add --refresh-package qgis-mcp before --from in the configs above: uvx then re-resolves this package from GitHub on every launch. Warning: this requires network at launch - the MCP server fails to start when offline - and adds ~1–3s to startup. The plain configs above use the cached version and work offline.
After updating the plugin, click Stop / Start in the QGIS MCP dock widget (or reload via Plugins > QGIS MCP > Reload Plugin) to load the new code without restarting QGIS.
Tools (118)
Category | Tools |
Project |
|
Layers |
|
Features |
|
Fields |
|
Editing |
|
Styling |
|
Connections |
|
Rendering |
|
Bookmarks & themes |
|
Processing |
|
Analysis |
|
Layouts |
|
Atlas |
|
Query |
|
Layer tree |
|
Plugins |
|
System |
|
All tools are async with human-readable titles and annotations (readOnly, destructive, idempotent). Destructive tools ask for confirmation via MCP elicitation when supported; clients without elicitation proceed normally (fail-open) since tools are already gated by ToolAnnotations. Long-running tools report progress via MCP logging.
Compound tool mode
Set QGIS_MCP_TOOL_MODE=compound to reduce the granular tools to 27 grouped tools (every granular command stays reachable), cutting schema overhead per LLM turn. Each compound tool takes an action parameter plus a params object holding that action's parameters:
QGIS_MCP_TOOL_MODE=compound uv run --no-sync src/qgis_mcp/server.py{ "action": "load", "params": { "path": "/data/city.qgz" } }Omit params for actions that take none ({"action": "ping"}).
Groups: system, project, layer, features, selection, style, canvas, render, processing, code, batch, layer_tree, plugins, variables, settings, expression, query, transform, message_log, layer_property, field, analysis, bookmarks, map_themes, active_layer.
Configuration
Environment variable | Default | Description |
|
| Host for socket connection |
|
| Port for socket connection |
| (unset) | Address several running QGIS windows from one server. See Multiple QGIS instances. |
| (unset) | Optional shared secret. When set, the plugin rejects any command without a matching token. See Authentication. |
|
| MCP transport: |
|
| Log file path (empty to disable) |
|
| File log level |
|
|
|
| on | Confirmation elicitation on destructive tools ( |
Authentication
By default the socket has no authentication - it binds to localhost only, but any process on the machine that can reach the port can drive QGIS (including execute_code, which runs arbitrary PyQGIS). For shared or multi-user machines, set a shared secret so only callers that know it can connect:
Set
QGIS_MCP_TOKENin the environment QGIS runs in (so the plugin enforces it), then Stop/Start the server in the dock. The QGIS log showsToken authentication ENABLED.Set the same value in the MCP server's environment - add it to the
envblock of your MCP client config:{ "mcpServers": { "qgis": { "command": "uvx", "args": ["--from", "https://github.com/nkarasiak/qgis-mcp/archive/refs/heads/main.zip", "qgis-mcp-server"], "env": { "QGIS_MCP_TOKEN": "your-long-random-secret" } } } }
The token is compared in constant time. When QGIS_MCP_TOKEN is unset (the default), behaviour is unchanged. This raises the bar against other local users/processes; a process running as the same user can still read the token from your config, so it is not a sandbox.
One exception: binding the plugin to a non-loopback address requires a token. Exposing arbitrary PyQGIS execution to the network without authentication is not a state you should be able to reach by accident, so the plugin refuses to start on such an address until QGIS_MCP_TOKEN is set (in QGIS and in the MCP server).
Multiple QGIS instances
One server registration can drive several running QGIS windows. Start each QGIS with the plugin on its own port, then list them in QGIS_MCP_INSTANCES as comma-separated name=port or name=host:port entries:
{
"mcpServers": {
"qgis": {
"command": "uvx",
"args": ["--from", "https://github.com/nkarasiak/qgis-mcp/archive/refs/heads/main.zip", "qgis-mcp-server"],
"env": { "QGIS_MCP_INSTANCES": "default=9876,planning=9877,archive=lab-box:9878" }
}
}
}Every tool takes an optional
instanceargument (get_layers(instance="planning")). Omitting it targets the entry nameddefault, or - when no entry is calleddefault- the first entry listed, soplanning=9877,archive=9878works without renaming anything.list_qgis_instancesreturns the configured names with their host, port, and current reachability. An unknown name is rejected with the list of valid names.Instance names match
[A-Za-z0-9_-]+; entries without a host useQGIS_MCP_HOST(defaultlocalhost).Each instance has its own pooled connection and its own lock, so two QGIS windows can be driven concurrently.
Not supported with
QGIS_MCP_TOOL_MODE=compound. Compound tools carry noinstanceargument, so every call would silently hit one instance; configuring more than one instance in compound mode refuses to start rather than routing writes to the wrong QGIS.When
QGIS_MCP_INSTANCESis unset, exactly one instance nameddefaultis defined fromQGIS_MCP_HOST/QGIS_MCP_PORT- existing setups are unaffected.QGIS_MCP_TOKENis shared across instances: the same secret must be set in every QGIS.
Contributing
git clone https://github.com/nkarasiak/qgis-mcp.git
cd qgis-mcp
python install.py # symlinks plugin + configures your MCP clientinstall.py options: --clients claude-desktop,cursor, --remote (uvx instead of uv run), --profile myprofile, --uninstall.
Known client names: claude-desktop, cursor, vscode, windsurf, zed, claude-code, codex, opencode, hermes, kimi, gemini, qwen, copilot-cli, lmstudio.
Windows (Microsoft Store / MSIX Claude Desktop):
install.pyuses--directoryinstead ofcwdin generated configs. This is required for Store-installed Claude Desktop, which runs MCP servers in an MSIX sandbox that silently dropscwd. If you configure manually, useuv --directory "/path/to/qgis-mcp" run --no-sync src/qgis_mcp/server.py- this works on both MSIX and standalone installs. You can identify a Store install when the config file is under%LOCALAPPDATA%\Packages\Claude_<id>\LocalCache\Roaming\Claude\instead of%APPDATA%\Claude\.
# Unit tests (no QGIS needed - mocked socket)
uv run --no-sync pytest tests/test_mcp_tools.py -v
# Integration tests (requires QGIS plugin running)
uv run --no-sync pytest tests/test_qgis_live.py -vLicense
This project is dual-licensed. Each component is distributed under its own license:
QGIS Plugin (
qgis_mcp_plugin/) - GNU GPL v2 or laterMCP Server (
src/qgis_mcp/) - MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityDmaintenanceA Model Context Protocol server that connects Claude AI to QGIS, enabling direct interaction with the GIS software for project creation, layer manipulation, code execution, and processing algorithms through natural language prompts.1510Creative Commons Zero v1.0 Universal
- Alicense-qualityCmaintenanceA geospatial MCP server that provides tools for geocoding, routing, elevation profiles, and spatial analysis. It enables AI agents to process GIS file formats like GeoJSON and Shapefiles while performing complex coordinate transformations and distance calculations.4MIT
- AlicenseBqualityDmaintenanceA comprehensive MCP server providing 30 tools for geocoding, routing, and OpenStreetMap data analysis. It enables AI assistants to search for locations, calculate travel routes, and perform quality assurance checks on map data.303MIT
- Alicense-qualityFmaintenanceDeploy QGIS in Docker as an MCP server, enabling AI assistants to perform spatial analysis, data loading, cartography, and multi-format export without local installation.8MIT
Related MCP Connectors
MCP server for AI dialogue using various LLM models via AceDataCloud
MCP server exposing the Backtest360 engine API as tools for AI agents.
GibsonAI MCP server: manage your databases with natural language
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nkarasiak/qgis-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server