Prisma MCP Server

The Model-Context-Protocol (MCP) gives LLMs a way to call APIs and thus access external systems in a well-defined manner. Its 10 documented tools cluster into create & write, read & search, delete, run & execute. It is available as a remote MCP endpoint.

Teams that want a hosted database endpoint instead of running a local process. The project is written in JavaScript.

VERIFIED ACTIVE

LAST COMMIT 2025-10-07 · ★ 47 · #126 OF 151 MAINTAINED DATABASE · VERIFIED 2026-08-25

JavaScript servers · how we verify → /methodology

01 · Install Prisma MCP Server

Claude Code

claude mcp add prisma-mcp --transport sse https://mcp.prisma.io/sse

Claude Desktop / Cursor / VS Code - add to config

{
  "mcpServers": {
    "prisma-mcp": {
      "url": "https://mcp.prisma.io/sse"
    }
  }
}

Same JSON for Cursor. For VS Code, rename the top-level key from `mcpServers` to `servers`.

Using another client? Same JSON, different key

Claude Desktop · mcpServers

Cursor · mcpServers

VS Code · servers

Windsurf · mcpServers

Zed · context_servers

Cline · mcpServers

Roo Code · mcpServers

Continue · mcpServers

LibreChat · mcpServers

Gemini CLI · mcpServers

Codex CLI · mcp_servers

Full setup guides: every client.

02 · Evidence

https://mcp.prisma.io/sse

transport: sse

endpoint alive - authentication required · probed 2026-08-25

Security posture

What to check before giving this server access to your agent - from the registry, GitHub, and our own probes. We don't score safety; we show what's verifiable.

runs as remote - your agent's requests go to mcp.prisma.io

endpoint auth requires authentication - rejected our unauthenticated MCP initialize

license no standard license detected - usage rights unclear; check the repo before commercial use

registry vendor namespace io.prisma - domain-verified with the official MCP registry

03 · What Prisma MCP Server can do

Prose above is summarized from the project's README and registry record - no invented capabilities.

What you can build

With this server connected, an agent can create a new managed Prisma Postgres Backup, create a new Connection String for a Prisma Postgres database with the given id, delete a Connection String with the given connection string id, and delete a Prisma Postgres database with the given id.

Capability map

Tools grouped from the project's README - what Prisma MCP Server lets an agent do.

create & write

3 tools - e.g. Create a new managed Prisma Postgres Backup.; Create a new Connection String for a Prisma Postgres database with the given id.; Restore a Prisma Postgres Database to a new database with the given Backup…

CreateBackupTool · CreateConnectionStringTool · CreateRecoveryTool

read & search

3 tools - e.g. Fetch a list of available Prisma Postgres Backups for the given database id and environment id.; Fetch a list of available Prisma Postgres Database Connection Strings for the given database id and…

ListBackupsTool · ListConnectionStringsTool · ListDatabasesTool

delete

2 tools - e.g. Delete a Connection String with the given connection string id.; Delete a Prisma Postgres database with the given id.

DeleteConnectionStringTool · DeleteDatabaseTool

run & execute

1 tool - e.g. Execute a SQL query on a Prisma Postgres database with the given id.

ExecuteSqlQueryTool

Introspect Schema Tool

1 tool - e.g. Introspect the schema of a Prisma Postgres database with the given id.

IntrospectSchemaTool

04 · Who maintains Prisma MCP Server

mcp is maintained by prisma. It's the only MCP server we track from this author; the repo dates to Jun 2025.

05 · Facts

category
database - ranked #126 of 151 actively-maintained database servers as of 2026-08-25.
registry
io.prisma/mcp (active, first published 2025-10-07)

06 · Prisma MCP Server FAQ

Is Prisma MCP Server still maintained?

Yes - as of 2026-08-25, its last commit was 2025-10-07. We re-verify nightly.

What can Prisma MCP Server do?

With this server connected, an agent can create a new managed Prisma Postgres Backup, create a new Connection String for a Prisma Postgres database with the given id, delete a Connection String with the given connection string id, and delete a Prisma Postgres database with the given id.

How do I install Prisma MCP Server?

Run `claude mcp add prisma-mcp --transport sse https://mcp.prisma.io/sse`. You can also paste the ready-made client config above.

Does Prisma MCP Server require authentication?

Yes - when we probed the endpoint on 2026-08-25, it rejected an unauthenticated MCP initialize; you'll need credentials to connect.

07 · Alternatives to Prisma MCP Server