P
Prisma
Inspect Prisma schemas and run migrations.
·No reviews yet
Share:
About
Auto-generated
Prisma is a Model Context Protocol server in the Developer Tools category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Prisma.
- What does the Prisma MCP do?
- This MCP allows you to inspect Prisma schemas and execute migrations. It is designed to interact with Prisma ORM projects as part of a development workflow.
- How do I configure the Prisma MCP in a client like Cline?
- With Cline, you would add 'prisma' as a transport=stdio MCP. Ensure the Prisma CLI is installed and accessible in your environment's PATH for the MCP to function correctly.
- Does the Prisma MCP require an API key or other credentials?
- No, this Prisma MCP uses a 'none' authentication type. It operates directly with your local Prisma setup and does not require external API keys or OAuth.
- Can I use the Prisma MCP to inspect my database schema?
- Yes, a core capability of this MCP is to inspect Prisma schemas. This allows developers to understand their data models and relationships programmatically.
- What is a prerequisite for using the Prisma MCP?
- The primary prerequisite is a working installation of the Prisma CLI in your development environment. The MCP relies on commands provided by the local Prisma installation.
Install Prisma
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"prisma": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-prisma"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"prisma": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-prisma"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"prisma": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-prisma"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.