npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@infoinlet/mcp-postgres-nl-query

v0.1.1

Published

RLS/tenant-aware Postgres access for AI agents — list/describe schema, run read-only SQL, and NL→SQL with safety rails. MCP server.

Readme

postgres-nl-query

RLS/tenant-aware Postgres access for AI agents, as an MCP server. Five tools: list_tables, describe_table, query_sql, query_nl (NL→SQL via OpenRouter), explain_query.

Design doc: ../../docs/06-POSTGRES-NL-QUERY-MCP.md.

Safety model (defense in depth)

  1. Connect with a least-privilege role. RLS policies on your DB apply to it automatically — that's the real guard.
  2. Read-only by default (PG_WRITE_ALLOWED=false): query_sql rejects anything that isn't a single SELECT/WITH/EXPLAIN (static guard in sql-guard.ts), and runs it inside a BEGIN READ ONLY transaction.
  3. Row cap + timeout: every read is wrapped in an outer LIMIT (PG_MAX_ROWS) and a statement_timeout (PG_STATEMENT_TIMEOUT_MS).
  4. Tenant guard: set PG_TENANT_COLUMN/PG_TENANT_VALUE and NL→SQL is instructed to filter every tenant-scoped table (RLS still backs it).
  5. Human-in-the-loop: PG_NL_REQUIRE_APPROVAL=true makes query_nl return the generated SQL without executing — the agent (or a human) then runs it via query_sql.

Run

cp .env.example .env   # set PG_URL (+ OPENROUTER_API_KEY for query_nl)
npm install
npm run build
node dist/server.js    # stdio MCP server

MCP client config (e.g. Claude Desktop / Code):

{
  "mcpServers": {
    "postgres-nl-query": {
      "command": "node",
      "args": ["/opt/postgres-nl-query/dist/server.js"],
      "env": { "PG_URL": "postgres://agent_readonly:...@host:5432/appdb", "OPENROUTER_API_KEY": "sk-or-..." }
    }
  }
}

Why it's differentiated

Generic Postgres MCP servers exist; this one is multi-tenant aware (per-tenant filtering), read-only-by-default with a real static guard + READ ONLY tx, and supports an approval gate for NL→SQL — the things enterprises need before letting an agent near production data.