DATABASE DEVELOPMENT / Prisma
Prisma MCP
Manage Prisma Postgres databases, connection strings, recovery and object-store resources from an authenticated client.
“Manage Prisma Postgres databases using LLMs with the Prisma Model-Context-Protocol (MCP) Server”
01 / THE REASONING
Why this made the selection.
- Combines database lifecycle, schema inspection, backups and recovery in the Prisma workspace.
- The tool list distinguishes documentation lookup from SQL, schema and resource mutations.
02 / THE REVIEW RECORD
What we actually inspected.
Source review has boundaries.
A clear record is more useful than a “safe” badge.
Material inspected
- Current Prisma MCP guide, full tool list, workspace authentication and client setup examples.
Our findings
- Authentication selects a Prisma Console workspace.
- The current tool list includes permanently deleting a bucket and its objects/keys, so read-only documentation access must not be generalized to the whole server.
Not established by this review
- Server launch, authenticated tool calls, and release-to-source parity were not tested.
The review applies to the material and revision named here. A newer upstream release can change its behavior.
03 / PUT IT TO WORK
Connect a server deliberately.
DOCUMENTED COMMAND
claude mcp add --transport http prisma https://mcp.prisma.io/mcp Copying does not execute this command. It may retrieve a newer version than the reviewed source.
- For Claude Code, register the remote HTTP endpoint with the shown command; the JSON example uses the documented Cursor mcpServers format.
- Complete Prisma Console authentication and choose the intended workspace.
- Use the client’s approvals to review SQL, schema changes, recovery and deletion operations.
Before you start
- Prisma Console workspace access.
- A compatible remote MCP client.
Documented configuration example
Use the client and authentication context described in the setup guidance. Configuration formats vary between hosts.
{
"mcpServers": {
"Prisma": {
"url": "https://mcp.prisma.io/mcp"
}
}
} 04 / FOLLOW THE EVIDENCE
The source trail.
Our notes are separate from the original resource.
Check upstream before adopting a new version.
- Prisma MCP setup and scope ↗Checked
https://www.prisma.io/docs/ai/tools/mcp-server
Supports: summary, upstreamDescription, whySelected, bestFor, limitations, install, access, compatibility, transports, review