Skip to content

Commit a4bbbe7

Browse files
Replace mcp-remote config with direct url for remote MCP server (#7399)
Modern IDEs now support direct remote MCP connections without mcp-remote. This change updates the documentation to use the simpler url-based config. Fixes: PTL-690
1 parent 96f5587 commit a4bbbe7

File tree

3 files changed

+8
-16
lines changed

3 files changed

+8
-16
lines changed

content/250-postgres/350-integrations/400-mcp-server.mdx

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,7 @@ The remote Prisma MCP server follows the standard JSON-based configuration for M
4949
{
5050
"mcpServers": {
5151
"Prisma-Remote": {
52-
"command": "npx",
53-
"args": ["-y", "mcp-remote", "https://mcp.prisma.io/mcp"]
52+
"url": "https://mcp.prisma.io/mcp"
5453
}
5554
}
5655
}
@@ -154,8 +153,7 @@ If your browser blocks the link, [you can set it up manually](https://code.visua
154153
"args": ["-y", "prisma", "mcp"]
155154
},
156155
"Prisma-Remote": {
157-
"command": "npx",
158-
"args": ["-y", "mcp-remote", "https://mcp.prisma.io/mcp"]
156+
"url": "https://mcp.prisma.io/mcp"
159157
}
160158
}
161159
}
@@ -210,8 +208,7 @@ Adding it via the **Cursor Settings** settings will modify the global `~/.curso
210208
"args": ["-y", "prisma", "mcp"]
211209
},
212210
"Prisma-Remote": {
213-
"command": "npx",
214-
"args": ["-y", "mcp-remote", "https://mcp.prisma.io/mcp"]
211+
"url": "https://mcp.prisma.io/mcp"
215212
},
216213
// other MCP servers
217214
}
@@ -230,8 +227,7 @@ If you want the Prisma MCP server to be available only in specific Cursor projec
230227
"args": ["-y", "prisma", "mcp"]
231228
},
232229
"Prisma-Remote": {
233-
"command": "npx",
234-
"args": ["-y", "mcp-remote", "https://mcp.prisma.io/mcp"]
230+
"url": "https://mcp.prisma.io/mcp"
235231
}
236232
// other MCP servers
237233
}
@@ -279,8 +275,7 @@ Adding it via the **Windsurf Settings** will modify the global `~/.codeium/wind
279275
"args": ["-y", "prisma", "mcp"]
280276
},
281277
"Prisma-Remote": {
282-
"command": "npx",
283-
"args": ["-y", "mcp-remote", "https://mcp.prisma.io/mcp"]
278+
"url": "https://mcp.prisma.io/mcp"
284279
},
285280
// other MCP servers
286281
}
@@ -344,8 +339,7 @@ Then add the JSON snippet to that configuration file:
344339
"args": ["-y", "prisma", "mcp"]
345340
},
346341
"Prisma-Remote": {
347-
"command": "npx",
348-
"args": ["-y", "mcp-remote", "https://mcp.prisma.io/mcp"]
342+
"url": "https://mcp.prisma.io/mcp"
349343
},
350344
// other MCP servers
351345
}

content/250-postgres/350-integrations/500-vscode.mdx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,7 @@ If your browser blocks the link, [you can set it up manually](https://code.visua
9292
"args": ["-y", "prisma", "mcp"]
9393
},
9494
"Prisma-Remote": {
95-
"command": "npx",
96-
"args": ["-y", "mcp-remote", "https://mcp.prisma.io/mcp"]
95+
"url": "https://mcp.prisma.io/mcp"
9796
}
9897
}
9998
}

content/900-ai/index.mdx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,7 @@ With Prisma’s MCP server, your AI tool can take database actions on your behal
6969
{
7070
"mcpServers": {
7171
"Prisma-Remote": {
72-
"command": "npx",
73-
"args": ["-y", "mcp-remote", "https://mcp.prisma.io/mcp"]
72+
"url": "https://mcp.prisma.io/mcp"
7473
}
7574
}
7675
}

0 commit comments

Comments
 (0)