Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ metaDescription: Manage Prisma Postgres databases using LLMs with the Prisma Mod

The [Model-Context-Protocol](https://modelcontextprotocol.io/introduction) (MCP) gives LLMs a way to call APIs and thus access external systems in a well-defined manner.

Prisma's provides two MCP servers: a _local_ and a _remote_ one. See below for specific information on each.
Prisma provides two MCP servers: a _local_ and a _remote_ one. See below for specific information on each.

If you're a developer working on a local machine and want your AI agent to help with your database workflows, use the local MCP server.

Expand Down Expand Up @@ -317,10 +317,10 @@ To learn more about Warp's MCP integration, visit the [Warp MCP docs](https://do

### Claude Code

Claude Code is a terminal-based AI tool where you can add MCP server using the `claud mcp add` command for the local MCP server:
Claude Code is a terminal-based AI tool where you can add MCP servers using the `claude mcp add` command for the local MCP server:

```bash
claude mcp add prisma-local npx prisma mcp
claude mcp add prisma-local -- npx -y prisma mcp
```

or for the remote MCP server:
Expand Down
6 changes: 3 additions & 3 deletions apps/docs/content/docs/ai/tools/mcp-server.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ metaDescription: 'Manage Prisma Postgres databases using LLMs with the Prisma Mo

The [Model-Context-Protocol](https://modelcontextprotocol.io/introduction) (MCP) gives LLMs a way to call APIs and thus access external systems in a well-defined manner.

Prisma's provides two MCP servers: a _local_ and a _remote_ one. See below for specific information on each.
Prisma provides two MCP servers: a _local_ and a _remote_ one. See below for specific information on each.

If you're a developer working on a local machine and want your AI agent to help with your database workflows, use the local MCP server.

Expand Down Expand Up @@ -318,10 +318,10 @@ To learn more about Warp's MCP integration, visit the [Warp MCP docs](https://do

### Claude Code

Claude Code is a terminal-based AI tool where you can add MCP server using the `claud mcp add` command for the local MCP server:
Claude Code is a terminal-based AI tool where you can add MCP servers using the `claude mcp add` command for the local MCP server:

```bash
claude mcp add prisma-local npx prisma mcp
claude mcp add prisma-local -- npx -y prisma mcp
```

or for the remote MCP server:
Expand Down
Loading