Skip to content

Commit 489e62c

Browse files
authored
feat: add Prisma MCP server definition (#63)
* 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 * fix: rename server files with transport suffix - com.prisma-mcp.json -> com.prisma-mcp-npx.json (id: com.prisma-mcp-npx) Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> --------- Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent dedb4cb commit 489e62c

1 file changed

Lines changed: 56 additions & 0 deletions

File tree

servers/com.prisma-mcp-npx.json

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.prisma-mcp-npx",
4+
"name": "Prisma (npx)",
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": [
10+
"database",
11+
"developer-tools"
12+
],
13+
"tags": [
14+
"prisma",
15+
"database",
16+
"orm",
17+
"migrations",
18+
"postgres",
19+
"schema"
20+
],
21+
"transport": {
22+
"type": "stdio",
23+
"command": "npx",
24+
"args": [
25+
"-y",
26+
"prisma",
27+
"mcp"
28+
],
29+
"metadata": {
30+
"inputs": []
31+
}
32+
},
33+
"auth": {
34+
"type": "none",
35+
"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."
36+
},
37+
"contributor": {
38+
"name": "Prisma",
39+
"github": "prisma",
40+
"url": "https://www.prisma.io"
41+
},
42+
"links": {
43+
"repository": "https://github.com/prisma/mcp",
44+
"homepage": "https://www.prisma.io",
45+
"documentation": "https://www.prisma.io/docs/postgres/integrations/mcp-server"
46+
},
47+
"platforms": [
48+
"all"
49+
],
50+
"capabilities": {
51+
"tools": true,
52+
"resources": false,
53+
"prompts": false,
54+
"read_only_mode": false
55+
}
56+
}

0 commit comments

Comments
 (0)