From e18f5026859c5c00a526b719fec45b067a9372d4 Mon Sep 17 00:00:00 2001 From: Kristof Siket Date: Wed, 17 Dec 2025 14:42:29 +0100 Subject: [PATCH] Replace mcp-remote config with direct url for remote MCP server 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 --- .../350-integrations/400-mcp-server.mdx | 18 ++++++------------ .../350-integrations/500-vscode.mdx | 3 +-- content/900-ai/index.mdx | 3 +-- 3 files changed, 8 insertions(+), 16 deletions(-) diff --git a/content/250-postgres/350-integrations/400-mcp-server.mdx b/content/250-postgres/350-integrations/400-mcp-server.mdx index 42caa36c6f..0382bdea75 100644 --- a/content/250-postgres/350-integrations/400-mcp-server.mdx +++ b/content/250-postgres/350-integrations/400-mcp-server.mdx @@ -49,8 +49,7 @@ The remote Prisma MCP server follows the standard JSON-based configuration for M { "mcpServers": { "Prisma-Remote": { - "command": "npx", - "args": ["-y", "mcp-remote", "https://mcp.prisma.io/mcp"] + "url": "https://mcp.prisma.io/mcp" } } } @@ -154,8 +153,7 @@ If your browser blocks the link, [you can set it up manually](https://code.visua "args": ["-y", "prisma", "mcp"] }, "Prisma-Remote": { - "command": "npx", - "args": ["-y", "mcp-remote", "https://mcp.prisma.io/mcp"] + "url": "https://mcp.prisma.io/mcp" } } } @@ -210,8 +208,7 @@ Adding it via the **Cursor Settings** settings will modify the global `~/.curso "args": ["-y", "prisma", "mcp"] }, "Prisma-Remote": { - "command": "npx", - "args": ["-y", "mcp-remote", "https://mcp.prisma.io/mcp"] + "url": "https://mcp.prisma.io/mcp" }, // other MCP servers } @@ -230,8 +227,7 @@ If you want the Prisma MCP server to be available only in specific Cursor projec "args": ["-y", "prisma", "mcp"] }, "Prisma-Remote": { - "command": "npx", - "args": ["-y", "mcp-remote", "https://mcp.prisma.io/mcp"] + "url": "https://mcp.prisma.io/mcp" } // other MCP servers } @@ -279,8 +275,7 @@ Adding it via the **Windsurf Settings** will modify the global `~/.codeium/wind "args": ["-y", "prisma", "mcp"] }, "Prisma-Remote": { - "command": "npx", - "args": ["-y", "mcp-remote", "https://mcp.prisma.io/mcp"] + "url": "https://mcp.prisma.io/mcp" }, // other MCP servers } @@ -344,8 +339,7 @@ Then add the JSON snippet to that configuration file: "args": ["-y", "prisma", "mcp"] }, "Prisma-Remote": { - "command": "npx", - "args": ["-y", "mcp-remote", "https://mcp.prisma.io/mcp"] + "url": "https://mcp.prisma.io/mcp" }, // other MCP servers } diff --git a/content/250-postgres/350-integrations/500-vscode.mdx b/content/250-postgres/350-integrations/500-vscode.mdx index 3e0f9118ac..245cdc56dc 100644 --- a/content/250-postgres/350-integrations/500-vscode.mdx +++ b/content/250-postgres/350-integrations/500-vscode.mdx @@ -92,8 +92,7 @@ If your browser blocks the link, [you can set it up manually](https://code.visua "args": ["-y", "prisma", "mcp"] }, "Prisma-Remote": { - "command": "npx", - "args": ["-y", "mcp-remote", "https://mcp.prisma.io/mcp"] + "url": "https://mcp.prisma.io/mcp" } } } diff --git a/content/900-ai/index.mdx b/content/900-ai/index.mdx index c299b91489..ff81e2a072 100644 --- a/content/900-ai/index.mdx +++ b/content/900-ai/index.mdx @@ -69,8 +69,7 @@ With Prisma’s MCP server, your AI tool can take database actions on your behal { "mcpServers": { "Prisma-Remote": { - "command": "npx", - "args": ["-y", "mcp-remote", "https://mcp.prisma.io/mcp"] + "url": "https://mcp.prisma.io/mcp" } } }