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.

NO LONGER MAINTAINED

LAST COMMIT 2025-10-07 · ★ 49 · VERIFIED 2026-09-18

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 responds (non-MCP reply - review) · probed 2026-09-18

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

repository archived on GitHub - read-only; no future fixes, security or otherwise

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 - dead as of 2026-09-18.
registry
io.prisma/mcp (active, first published 2025-10-07)

06 · Prisma MCP Server FAQ

Is Prisma MCP Server still maintained?

Its last commit was 2025-10-07 (as of 2026-09-18) - we classify it as dead.

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.

07 · Alternatives to Prisma MCP Server