-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathserver.json
More file actions
46 lines (46 loc) · 1.26 KB
/
server.json
File metadata and controls
46 lines (46 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-09-16/server.schema.json",
"name": "io.prisma/mcp",
"description": "MCP server for managing Prisma Postgres.",
"repository": {
"url": "https://github.com/prisma/mcp",
"source": "github"
},
"homepage": "https://www.prisma.io/docs/postgres/integrations/mcp-server",
"documentation": "https://www.prisma.io/docs/postgres/integrations/mcp-server",
"support": "https://prisma.io/support",
"version": "1.0.0",
"remotes": [
{
"type": "sse",
"url": "https://mcp.prisma.io/sse",
"headers": [
{
"name": "Authorization",
"description": "Bearer token for Prisma platform authentication",
"isRequired": true,
"isSecret": true
}
]
},
{
"type": "streamable-http",
"url": "https://mcp.prisma.io/mcp",
"headers": [
{
"name": "Authorization",
"description": "Bearer token for Prisma platform authentication",
"isRequired": true,
"isSecret": true
}
]
}
],
"keywords": ["database", "prisma", "postgres"],
"license": "MIT",
"author": {
"name": "Prisma",
"email": "support@prisma.io",
"url": "https://www.prisma.io"
}
}