QGIS MCP
Claude controls QGIS Desktop: layers, feature edits, processing, map rendering
Runs as a server Claude Code connects to. It needs its own configuration, and some servers need an API key.
Install just this one
Run in your terminal — needs Node
npx archtmpl@latest --mcp qgis-mcpFirst time? The whole install, step by step
- Open Claude Code — the terminal version or the desktop app, either one.
- In a terminal, paste the line above and press Enter. In the app, paste it into the chat and ask Claude to run it.
- Restart Claude Code. That's the whole install.
The same JSON shown on this page works in the Claude desktop app without Claude Code. Add it to the app's config file, then restart the app:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
What this mcp server does
shell
1{ 2 "name": "QGIS MCP", 3 "summary": "Claude controls QGIS Desktop: layers, feature edits, processing, map rendering", 4 "repo": "https://github.com/nkarasiak/qgis-mcp", 5 "mcpServers": { 6 "qgis": { 7 "command": "uvx", 8 "args": ["--from", "https://github.com/nkarasiak/qgis-mcp/archive/refs/heads/main.zip", "qgis-mcp-server"] 9 }10 },11 "postInstallNotes": "Requires QGIS 3.28+ and uv. In QGIS: Plugins > Manage and Install Plugins > search 'QGIS MCP' > Install, then click Start Server in the QGIS MCP dock widget."12}13