Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI β†’ MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE β†— (opens in a new tab)
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. Databases
  3. Midplane
M
Health: ActiveRecent health check succeeded.Last checked 8/26/2026, 10:46:02 PM

Midplane

User RatingsBe the first to rate and review this MCP server! Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository4 GitHub StarsTotal stargazers on GitHub for the source repository (4 stars).Visit Website

Safe-by-default SQL guardrails for AI agents: AST-checked queries, per-table policy, audit log.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Not yet automatically verified

We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β€” we're steadily working through the catalog.

Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Client Config & Setup

Choose your client or environment
Target File:~/Library/Application Support/Claude/claude_desktop_config.json
claude_desktop_config.json
{
  "mcpServers": {
    "midplane": {
      "command": "npx",
      "args": [
        "-y",
        "midplane"
      ]
    }
  }
}

πŸ’‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.

Install Directory Badge Claim listing AlternativesπŸ—„οΈ More in Databases

Documentation Overview

Midplane

License: MIT CI Docs MCP

Safe-by-default SQL guardrails for AI agents. Midplane sits in the query path between an AI agent (Claude, Cursor, any MCP client) and your Postgres database. It parses every statement with a real SQL AST β€” not a regex blocklist β€” enforces a declarative per-table access policy, blocks destructive DML/DDL, and writes an event-sourced audit log of which agent ran what, before the query executes.

πŸ“– Full documentation lives at midplane.ai/docs β€” agent setup, the policy reference, self-hosting, deployment, and the threat model. This README is just the orientation.

midplane-chat-demo

Why this exists

AI coding agents are being plugged into production Postgres without an audit trail or a safety layer. The deprecated Anthropic reference Postgres MCP shipped a stacked-statement injection vector (Datadog Security Labs, 2025); the common service-role setup hands an agent a connection that can read and write every table. Midplane parses every query as an AST, denies the dangerous shapes, and writes a durable audit row before the query reaches your database.

What it blocks

  • Destructive writes by default β€” DELETE FROM users is denied even with a WHERE, until you opt the table into read_write.
  • Whole-table wipes and schema destruction β€” no-WHERE DELETE / UPDATE and all DROP / TRUNCATE / ALTER, regardless of table policy.
  • Stacked-statement injection β€” SELECT 1; DROP TABLE users denied at parse time.
  • Writes hidden inside a read β€” WITH x AS (DELETE FROM users RETURNING *) SELECT * FROM x is denied at the inner DELETE, not the outer SELECT. The same recursive walk covers subqueries, UNION arms, and JOINs.

The full policy model, the parse β†’ policy β†’ audit pipeline, and the adversarial corpus that pins it are documented at midplane.ai/docs.

In a real chat

A delete all users prompt to Claude Code, against a Midplane-fronted DB:

⏺ Hold on β€” that's destructive and irreversible. Before I run DELETE FROM public.users, please confirm.

user: confirm delete all users

⏺ Midplane blocked it: "writes to table users are not allowed by the table-access policy." The DELETE was audited but not executed.

Quick start

Three ways in β€” same open-core codebase behind all of them. Step-by-step guides are at midplane.ai/docs.

Managed cloud

The fastest way to try Midplane: sign up at app.midplane.ai and go from zero to your first guarded query in a couple of minutes. Dashboard, policy editor, hosted audit log, agent-token issuance. Nothing to install, multi-region, fully supported.

Guard one database yourself

Put the MIT engine in front of a Postgres database and point an agent at it. Nothing to install β€” npx ships with Node and fetches the midplane package on first run (needs Node 22.16+; on anything older it says so and exits). Add this to your MCP client's config (Claude Code, Claude Desktop, Cursor β€” they all take this shape):

config.json
{
  "mcpServers": {
    "midplane": {
      "command": "npx",
      "args": ["-y", "midplane", "server", "--stdio"],
      "env": { "DATABASE_URL": "postgres://user:pass@host:5432/db" }
    }
  }
}

Keep the connection string in that env block rather than on a command line, where it would leak to ps aux and your shell history. The block still lands in a plaintext config file, so give Midplane its own least-privilege Postgres role: it governs which SQL runs, not what the role underneath it can reach.

That config is already the safe default: reads allowed, writes and DDL denied, every query audited to ~/.midplane/audit.db. Read the log back with npx midplane audit denies. To open specific tables up, generate a policy with npx midplane init β€” it introspects your schema over a read-only connection, suggests a tenant column, and writes a validated midplane.policy.yaml.

For a CI pipeline or a long-lived sidecar, the same engine ships as a self-contained image with no Node in it β€” midplane/midplane:0.20.0, serving Streamable HTTP instead of stdio. Setup Β· engine/README.md.

Self-host the whole app

The complete single-tenant product β€” dashboard, policy editor, audit log, agent-token issuance β€” keyless and uncapped, on your own Postgres. Docker is the only prerequisite:

bash
git clone https://github.com/midplaneai/midplane && cd midplane
./bin/self-host up                               # β†’ http://localhost:3000

That generates secrets into .env.self-host, brings up Postgres + the web app, applies migrations on boot, and prints the dashboard URL β€” the first email+password signup becomes the owner.

Running from source, the single-image deploy, the engine-spawn topology, and the full walkthrough: midplane.ai/docs (in-repo: SELF_HOST.md).

Open core

Midplane is open core, MIT, and self-hostable. Everything outside apps/web/src/ee/ is the Community Edition β€” the whole single-tenant product, uncapped when self-hosted. apps/web/src/ee/ is the commercial Enterprise Edition (SSO/SAML today; the governance band over time); deleting it leaves a working MIT build. The managed cloud is the same codebase and the supported, paid path. See LICENSE for the MIT terms and NOTICE for the ee/ carve-out.

Architecture

One codebase, two deployables:

  • Control plane (repo root) β€” dashboard, policy management, audit views, agent-token issuance, hosted MCP proxy. MIT except apps/web/src/ee/.
  • Engine (engine/) β€” the MIT query-path engine, compiled to a self-contained binary. The control plane spawns it per project and never reimplements it, so hosted and self-host run the exact same engine β€” only the packaging differs.
Code
apps/web              Next.js dashboard + Better Auth + projects API
packages/db           Drizzle schema (customers, projects, audit index)
packages/kms          encryptDsn / decryptDsn (env-mode dev, AWS KMS prod)
packages/router       Hosted MCP request handler β€” token β†’ project β†’ engine
engine/               The MIT query-path engine
infra/telemetry-proxy Cloudflare Worker for anonymized OSS install telemetry

Operating the managed multi-region cloud (Fly + Neon + KMS) is in docs/deploy.md.

Contributing

Issues and PRs welcome β€” start with CONTRIBUTING.md. The single highest-leverage contribution is a new entry in the adversarial SQL corpus: a bypass attempt and the policy fix that defeats it. Commits are DCO-signed (git commit -s). For security issues, follow SECURITY.md β€” don't open a public issue.

License

MIT β€” see LICENSE. No copyleft, no BSL, no source-available rug-pull. The one carve-out is apps/web/src/ee/ (the commercial Enterprise Edition, governed by apps/web/src/ee/LICENSE and recorded in NOTICE); deleting it leaves a fully working MIT build.


More: Docs Β· Pricing Β· Support Β· Design system Β· Code of Conduct

Related MCP Servers

View all in Databases View all alternatives
  • Genai Toolbox logoGenai Toolbox

    Open source MCP server specializing in easy, fast, and secure tools for Databases.

    πŸ—„οΈ Databases4 views
    Compare vs Genai Toolbox β†’
  • MCP Server Mysql logoMCP Server Mysql

    MySQL database integration in NodeJS with configurable access controls and schema inspection

    πŸ—„οΈ Databases3 views
    Compare vs MCP Server Mysql β†’
  • Keboola MCP Server logoKeboola MCP Server

    Connect your AI assistants to Keboola and expose your data, transformations, SQL queries, ...

    πŸ—„οΈ Databases0 views
    Compare vs Keboola MCP Server β†’
  • MCP Mysql Server logoMCP Mysql Server

    Node.js-based MySQL database integration that provides secure MySQL database operations

    πŸ—„οΈ Databases3 views
    Compare vs MCP Mysql Server β†’

Reviews

No reviews yet β€” be the first to share how this listing worked for you.

Frequently Asked Questions about Midplane

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "midplane": { "command": "npx", "args": ["-y", "Midplane"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewMidplane AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/midplane?style=directory)](https://allmcps.com/mcp/midplane)
HTML Embed
<a href="https://allmcps.com/mcp/midplane"><img src="https://allmcps.com/api/badge/midplane?style=directory" alt="Midplane on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ—„οΈDatabases
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
GitHub stars4
GitHub Star CountTotal stargazers on GitHub representing community popularity (4 stars).
Last commit1d ago
Last Repository CommitThe most recent commit or push recorded for this server's GitHub repository.Last commit on Aug 25, 2026
41Quality signal: Fair Β· 41/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership10/20
Documentation & tools16/30
Adoption & activity5/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

Supply-chain signal

No high-severity advisories surfaced by our automated scan.

Critical 0High 0Medium 0Low 0

Scanned 2h ago via OSV.dev Β· midplane (npm)

β˜… FeaturedMoxie Docs MCP logo

Moxie Docs MCP

MCP & Agent Skills for Automated Documentation, and codebase conventions + context

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to unlock edit access and the Official badge β€” proof is checked automatically, then reviewed by our team.

Free dofollow backlink: add your website and place the AllMCPs badge on it β€” no claim needed. We detect it automatically and keep it verified as long as the badge stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ—„οΈ Databases β†’Best MCP servers for Databases β†’Alternatives to Midplane β†’Install in Claude DesktopInstall in CursorInstall in VS Code