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.1.tar.gz (139.6 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.1-py3-none-any.whl (36.1 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: mcp_postgis-0.2.1.tar.gz
  • Upload date:
  • Size: 139.6 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.1.tar.gz
Algorithm Hash digest
SHA256 9eca81e31ac3730fa6eeb1c84f2c6ee7f81def1971975c0d2ed4364fcb43bfee
MD5 f7b61b92f1cfdcad869de101e1f893c9
BLAKE2b-256 041f5f7d7ea5f61c5c0e55eb4ecfeba938049db982f3e790340456494093fe13

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcp_postgis-0.2.1.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.1-py3-none-any.whl.

File metadata

  • Download URL: mcp_postgis-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 36.1 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.1-py3-none-any.whl
Algorithm Hash digest
SHA256 d656eed0992c7183b43e1efb71d94860a2eb83426fc9d1f162cb06d52cde8851
MD5 ceb2f9dc36b4f15d04748e414dbe575b
BLAKE2b-256 21966d18591945986a27229491a94c41c900abf532dd9181b8f8985f749a5622

See more details on using hashes here.

Provenance

The following attestation bundles were made for mcp_postgis-0.2.1-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