Skip to main content

pglens

Read-only PostgreSQL introspection for AI agents. 29 MCP tools for schema discovery, data exploration, query execution, and health monitoring. Pure pg_catalog, no extensions required.

Why pglens

Most Postgres MCP servers expose query and list_tables, and little else. Agents end up guessing column names, enum values, and join paths, burning several failed attempts before landing on working SQL.

pglens closes those gaps. The agent can check what values actually exist in a column, discover foreign-key relationships, preview sample data, and validate a query plan before running it.

column_values in particular: agents frequently write WHERE status = 'active' when the real value is 'Active' or 'enabled'. column_values returns the actual distinct values with counts, so the agent picks the right one instead of guessing.

How it works

AI agent (MCP client)  ──►  pglens  ──►  your PostgreSQL
   Claude, etc.            MCP server      (read-only)
  1. Your MCP client (Claude Desktop, Claude Code, Zed, …) launches pglens and connects over MCP.
  2. pglens connects to PostgreSQL using standard libpq environment variables and opens a connection pool.
  3. The agent calls pglens tools to introspect the schema, sample data, run read-only queries, and inspect health, instead of guessing.

pglens opens read-only connections (default_transaction_read_only=on), quotes every identifier, and runs each statement under a timeout. It exposes no DDL tools. All introspection uses pg_catalog directly, so no PostgreSQL extensions are needed. See Safety.

Tools

Schema and discovery

Tool What it does
database_info Server version, database name, current user, encoding, timezone, uptime, size, configured database aliases
list_schemas Schemas with table and view counts
list_tables Tables with row counts and descriptions
list_views Views with their SQL definitions
list_extensions Installed extensions and versions
describe_table Columns, types, PKs, FKs (both directions), indexes, check constraints
find_join_path Multi-hop join paths between two tables via foreign keys
list_indexes All indexes across a schema with types, sizes, validity, and usage stats
list_functions Stored functions/procedures with source code
list_triggers Triggers on a table with definitions and status
list_policies Row-level security policies on a table

Data exploration

Tool What it does
sample_rows Random rows from a table
column_values Distinct values with frequency counts
column_stats Min, max, null fraction, distinct count, common values
search_data Case-insensitive search across text columns
search_columns Find columns by name across all tables
search_enum_values Enum types and their allowed values

Query execution

Tool What it does
explain_query Query plan without execution
query Read-only SQL with limit/offset pagination (default 500 rows)

Performance and health

Tool What it does
slow_queries Top statements by total execution time (needs pg_stat_statements)
table_health Index hit rates, dead tuples, vacuum timestamps, wraparound risk
table_sizes Disk usage per table, ranked by size
unused_indexes Indexes that are never scanned, including invalid ones
active_queries Currently running sessions and their queries
blocking_locks Lock wait chains (who blocks whom)
replication_status Standby lag and replication slots (inactive slots retain WAL)
sequence_health Sequences approaching exhaustion
matview_status Materialized view freshness and refresh eligibility

All tools work on a stock PostgreSQL with no extensions. The one exception is slow_queries, which reads pg_stat_statements when it is installed and returns install instructions when it is not.

Safety before DDL

Tool What it does
object_dependencies What depends on a given object (views, functions, constraints)

There is also a query_guide prompt that describes a reasonable workflow for using these tools together.

Installation

uvx (recommended)

uvx runs pglens straight from PyPI with no install step, always fetching the latest published version:

uvx pglens

There is nothing to upgrade; each launch resolves the newest release. Pin a version when you need: uvx pglens@1.1.0.

pip

pip install pglens            # install
pip install --upgrade pglens  # upgrade later

Requirements: Python 3.11+ and a reachable PostgreSQL server.

Configuration

pglens needs two things: PostgreSQL connection details (via libpq env vars) and an entry in your MCP client. A minimal Claude Desktop config:

{
  "mcpServers": {
    "pglens": {
      "command": "uvx",
      "args": ["pglens"],
      "env": {
        "PGHOST": "localhost",
        "PGPORT": "5432",
        "PGUSER": "myuser",
        "PGPASSWORD": "mypassword",
        "PGDATABASE": "mydb"
      }
    }
  }
}

Connecting to PostgreSQL

pglens reads standard PostgreSQL environment variables (libpq). Connection strings (DSNs) are not supported. Credentials live entirely in PG* env vars, so they never appear in arguments or command lines.

Variable Required Purpose
PGHOST yes Postgres host
PGPORT no (default 5432) Postgres port
PGUSER yes Username
PGPASSWORD yes (or PGPASSFILE) Password
PGDATABASE recommended Primary dbname; also the default alias when a tool is called without database=
PGSSLMODE no disable, prefer, require, verify-ca, verify-full
PGSERVICE, PGPASSFILE, PGAPPNAME, … no Other libpq env vars, honored by asyncpg automatically
PGLENS_DATABASES no Comma-separated extra dbnames on the same host (see Multiple databases)
PGLENS_STATEMENT_TIMEOUT no (default 60) Per-statement timeout in seconds; 0 disables it

pglens reads no connection-string env vars. Configuration goes through libpq env vars only.

To run pglens directly from a shell (e.g. for testing):

export PGHOST=localhost
export PGUSER=myuser
export PGPASSWORD=mypassword
export PGDATABASE=mydb
uvx pglens

Check the installed version with pglens --version.

MCP clients

If you installed pglens with pip instead of using uvx, replace "command": "uvx", "args": ["pglens"] with "command": "pglens" in any of the configs below.

Claude Desktop

{
  "mcpServers": {
    "pglens": {
      "command": "uvx",
      "args": ["pglens"],
      "env": {
        "PGHOST": "localhost",
        "PGPORT": "5432",
        "PGUSER": "myuser",
        "PGPASSWORD": "mypassword",
        "PGDATABASE": "mydb"
      }
    }
  }
}

Claude Code

{
  "mcpServers": {
    "pglens": {
      "command": "uvx",
      "args": ["pglens"],
      "env": {
        "PGHOST": "localhost",
        "PGDATABASE": "mydb"
      }
    }
  }
}

Zed

{
  "context_servers": {
    "pglens": {
      "command": {
        "path": "uvx",
        "args": ["pglens"]
      }
    }
  }
}

Multiple databases

Every tool accepts an optional database argument to target an alternate connection. This is useful for Postgres setups that expose system metrics in a separate database. Azure Database for PostgreSQL Flexible Server, for example, keeps server metrics in azure_sys.

PGDATABASE is the primary alias and the default target when a tool is called without database=. List any additional dbnames on the same host in PGLENS_DATABASES; each becomes its own alias with its own pool. Host, user, password, and TLS mode come from the standard libpq env vars and are shared across every pool:

{
  "mcpServers": {
    "pglens": {
      "command": "uvx",
      "args": ["pglens"],
      "env": {
        "PGHOST": "myhost.postgres.database.azure.com",
        "PGPORT": "5432",
        "PGUSER": "admin",
        "PGPASSWORD": "...",
        "PGSSLMODE": "require",
        "PGDATABASE": "app",
        "PGLENS_DATABASES": "azure_sys"
      }
    }
  }
}
  • Names are used verbatim as Postgres dbnames, which are case-sensitive (e.g. PGDATABASE=MyApp connects to MyApp, not myapp).
  • If PGDATABASE is unset but PGLENS_DATABASES is set, the first listed alias becomes the default.
  • If both are unset, a single default alias relies on libpq's own default behavior.
  • If the databases you need live on different hosts or require different credentials, run a separate pglens server per host with its own PG* env block.

Discover what is configured via database_info (the available_databases key), then pass the alias as the database argument:

database_info() -> {..., "available_databases": ["app", "azure_sys"]}
table_sizes(schema="public", database="azure_sys")
query(sql="SELECT * FROM query_store.qs_view LIMIT 10", database="azure_sys")

Omit database (or pass None) to use PGDATABASE (the primary alias).

Transport

By default the server uses stdio transport (what every MCP client config above expects). To run as an HTTP server for remote use:

uvx pglens --transport streamable-http
Flag Choices Default Description
--transport stdio, streamable-http stdio MCP transport type

Safety

  • Every connection sets default_transaction_read_only=on, so the server itself refuses writes. User-influenced queries also run inside explicit readonly=True transactions.
  • pglens parses SQL for query and explain_query with PostgreSQL's own parser (via pglast) and accepts only a single SELECT statement. It rejects SELECT INTO, data-modifying CTEs like WITH x AS (DELETE ...), and multi-statement input before anything reaches the database.
  • The same validation rejects parameter placeholders ($1, $2). Inline literal values instead.
  • A statement timeout (PGLENS_STATEMENT_TIMEOUT, default 60 s) bounds every query, so a runaway COUNT(*) or EXPLAIN ANALYZE cannot hog the server.
  • pglens always quotes table and column identifiers; internal values go through bind parameters.
  • Connections set application_name = 'pglens', which makes them easy to spot in pg_stat_activity.
  • pglens exposes no DDL tools.

How it's built

adapters/tools/*.py          (MCP tool definitions, organized by category)
        │
adapters/mcp_adapter.py      (MCPServer, lifespan, pool management)
        │
adapters/asyncpg_adapter.py  (SQL queries, asyncpg pool)
        │
   PostgreSQL

AsyncpgDatabase holds the asyncpg pool and all query methods. Tool modules in adapters/tools/ are thin wrappers that register MCP tools via decorators and delegate to it. All queries use pure pg_catalog introspection, so no PostgreSQL extensions are required.

Adding a tool:

  1. Add a method to AsyncpgDatabase in adapters/asyncpg_adapter.py.
  2. Add a @mcp.tool() function in the appropriate adapters/tools/*.py module.

License

MIT

Download files

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

Source Distribution

pglens-1.3.0.tar.gz (111.1 kB view details)

Uploaded Source

Built Distribution

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

pglens-1.3.0-py3-none-any.whl (28.6 kB view details)

Uploaded Python 3

File details

Details for the file pglens-1.3.0.tar.gz.

File metadata

  • Download URL: pglens-1.3.0.tar.gz
  • Upload date:
  • Size: 111.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pglens-1.3.0.tar.gz
Algorithm Hash digest
SHA256 a1714332027e531368c47f9d172572a1bdd773d0565d76148d889c116240c07e
MD5 a6d0b17f4f68a6bff6448e663ece3b30
BLAKE2b-256 10f9d677226363b95e2ab2a9569cb55a17d6a931ed1be3a78ae67a910b2c54de

See more details on using hashes here.

Provenance

The following attestation bundles were made for pglens-1.3.0.tar.gz:

Publisher: release.yml on janbjorge/pglens

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

File details

Details for the file pglens-1.3.0-py3-none-any.whl.

File metadata

  • Download URL: pglens-1.3.0-py3-none-any.whl
  • Upload date:
  • Size: 28.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pglens-1.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c33eb06c4fd6be444f81ba307ba7cdba40d954a845a2d79e9b1b68fbb3d878e8
MD5 0e9e11663099c07cd21aa7d8021d998a
BLAKE2b-256 7a2f40f41be4caa438899506c4269ed6f28d01c5b12853e3e32f9b165817ab55

See more details on using hashes here.

Provenance

The following attestation bundles were made for pglens-1.3.0-py3-none-any.whl:

Publisher: release.yml on janbjorge/pglens

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 Sentry Error logging StatusPage Status page