Skip to content

Commit eb55f62

Browse files
claudeits-mash
authored andcommitted
Add Prisma MCP server definition
Official Prisma MCP server for database management. Supports migrations, schema introspection, and Prisma Studio. Uses prisma CLI with stdio transport. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx
1 parent 0217546 commit eb55f62

1 file changed

Lines changed: 46 additions & 0 deletions

File tree

servers/com.prisma-mcp.json

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.prisma-mcp",
4+
"name": "Prisma",
5+
"alias": "prisma",
6+
"description": "Manage Prisma databases with migrations, schema introspection, and Prisma Studio. Create Prisma Postgres databases and check migration status.",
7+
"icon": "https://avatars.githubusercontent.com/u/17219288?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["database", "developer-tools"],
10+
"tags": ["prisma", "database", "orm", "migrations", "postgres", "schema"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "prisma", "mcp"],
16+
"metadata": {
17+
"inputs": []
18+
}
19+
},
20+
21+
"auth": {
22+
"type": "none",
23+
"instructions": "No API key required for local use. The server reads database credentials from your project's .env file. Some tools may prompt for Prisma CLI login."
24+
},
25+
26+
"contributor": {
27+
"name": "Prisma",
28+
"github": "prisma",
29+
"url": "https://www.prisma.io"
30+
},
31+
32+
"links": {
33+
"repository": "https://github.com/prisma/mcp",
34+
"homepage": "https://www.prisma.io",
35+
"documentation": "https://www.prisma.io/docs/postgres/integrations/mcp-server"
36+
},
37+
38+
"platforms": ["all"],
39+
40+
"capabilities": {
41+
"tools": true,
42+
"resources": false,
43+
"prompts": false,
44+
"read_only_mode": false
45+
}
46+
}

0 commit comments

Comments
 (0)