Skip to main content

Model Context Protocol server for PostGIS

Project description

mcp-postgis

CI PyPI Python License: MIT

A Model Context Protocol server that exposes PostGIS to MCP-aware clients (Claude Desktop, Claude Code).

Lets Claude introspect your spatial database, run safe spatial queries, and publish results as views that QGIS picks up automatically — so an analyst can describe a layer in plain language and have it land in their QGIS browser.

Install

pip install mcp-postgis     # or `uv tool install mcp-postgis`

Quick start (Docker PostGIS + Claude Desktop)

  1. Run PostGIS:
    docker run --name postgis -e POSTGRES_PASSWORD=postgres \
      -p 5432:5432 -d postgis/postgis:16-3.4
    
  2. Create a dedicated read-only role (see docs/security.md for read_write and admin variants):
    CREATE ROLE mcp_postgis_ro LOGIN PASSWORD 'change-me';
    GRANT CONNECT ON DATABASE mydb TO mcp_postgis_ro;
    GRANT USAGE ON SCHEMA public, app TO mcp_postgis_ro;
    GRANT SELECT ON ALL TABLES IN SCHEMA public, app TO mcp_postgis_ro;
    ALTER DEFAULT PRIVILEGES IN SCHEMA public, app
        GRANT SELECT ON TABLES TO mcp_postgis_ro;
    
  3. Add to your claude_desktop_config.json:
    {
      "mcpServers": {
        "postgis": {
          "command": "uvx",
          "args": ["mcp-postgis"],
          "env": {
            "MCP_POSTGIS_DATABASE_URL": "postgresql://mcp_postgis_ro:change-me@localhost:5432/mydb",
            "MCP_POSTGIS_MODE": "read_only"
          }
        }
      }
    }
    
  4. Restart Claude Desktop. The server's tools appear in the model picker.

Using with Claude Code (Linux/macOS/Windows)

Claude Desktop is macOS/Windows only — on Linux (or anywhere you use the CLI), register the server with Claude Code instead:

claude mcp add --transport stdio \
  --env MCP_POSTGIS_DATABASE_URL="postgresql://mcp_postgis_ro:change-me@localhost:5432/mydb" \
  --env MCP_POSTGIS_MODE=read_only \
  --scope user \
  postgis \
  -- uvx mcp-postgis

Restart claude, then /mcp lists the server and its tools. Use --scope user (not project) so your connection string isn't committed to a repo.

Modes

Mode What it can do
read_only Default. Introspection + SELECT + spatial analysis. No writes, no DDL.
read_write Above + create/refresh/drop views in MCP_POSTGIS_LAYER_SCHEMA (mcp_layers by default).
admin Anything the connected role can do. Use only for one-off admin tasks; the role still gates.

Tools

Introspection: list_schemas, list_tables, describe_table, list_geometry_columns, list_spatial_indexes, list_extensions

Query: execute_sql, explain, sample_table

Spatial analysis: features_in_bbox, features_in_polygon, nearest_features, within_distance, buffer, intersect_layers

Geometry operations: transform_srid, centroid, point_on_surface, area, length, simplify, is_valid, make_valid, bbox

Data quality: check_geometry_validity

Export: export_geojson, export_wkt

Layer publishing (QGIS bridge): create_layer (with geometry_type filter), refresh_layer, list_layers, describe_layer, drop_layer

Resources: postgis://schemas, postgis://schema/{schema}/{table}, postgis://layers · Prompts: analyze-layer, nearest-things, within-radius, compare-layers

QGIS integration

After running the server in read_write mode and asking Claude to "publish that as a layer named hotels_near_coast", point QGIS at the same database (or use the same role). In the QGIS Browser → PostGIS → your connection, right-click → Refresh; the mcp_layers schema appears with hotels_near_coast inside it.

See docs/qgis-setup.md for screenshots.

License

MIT. Contributions welcome — please open an issue first to discuss bigger changes.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mcp_postgis-0.2.0.tar.gz (139.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mcp_postgis-0.2.0-py3-none-any.whl (35.7 kB view details)

Uploaded Python 3

File details

Details for the file mcp_postgis-0.2.0.tar.gz.

File metadata

  • Download URL: mcp_postgis-0.2.0.tar.gz
  • Upload date:
  • Size: 139.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mcp_postgis-0.2.0.tar.gz
Algorithm Hash digest
SHA256 09812226417d8ea26a78fe9e78dfa976f7d4db75b7a5868ae5bdec6b42be7d29
MD5 908d9e7ad3db4c9b64a524d15277637d
BLAKE2b-256 50bf97058d359602494339d1f5e59e28edd98e88858ca46fadf212d7be18e3ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcp_postgis-0.2.0.tar.gz:

Publisher: release.yml on psychonaut0/mcp-postgis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mcp_postgis-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: mcp_postgis-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 35.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mcp_postgis-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 1168887cbb586a850cabbe7b213f96736691d9cfc857825ca7c42b542fb05f00
MD5 5e7831303a7431ff3d0ed8a229f3dfd0
BLAKE2b-256 b97f6a1db647c2adb33e2bf4100a24ca96c0ad41817dc40027d57bad289ed227

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcp_postgis-0.2.0-py3-none-any.whl:

Publisher: release.yml on psychonaut0/mcp-postgis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page