Prisma MCP Server

Databasestdiohttp-streaming
Repository

Prisma's official MCP server that lets AI tools manage Prisma ORM projects and Prisma Postgres databases through natural language. Provides both a local server for working with a project's Prisma schema and migrations, and a remote server for provisioning and managing Prisma Postgres databases. Useful for scaffolding models, generating and applying migrations, and running database workflows from an AI coding assistant.

Bağlan

Bu yapılandırmayı şuraya ekleyin: .claude/mcp.json

Taşıma:
{
  "mcpServers": {
    "prisma": {
      "command": "npx",
      "args": [
        "-y",
        "prisma",
        "mcp"
      ],
      "env": {
        "PRISMA_POSTGRES_API_KEY": "<YOUR_PRISMA_POSTGRES_API_KEY>"
      }
    }
  }
}

Araçlar (2)

migrate

Create and apply Prisma migrations from changes to the Prisma schema.

{
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Name for the migration"
    }
  }
}

create_database

Provision a new Prisma Postgres database in a chosen region.

{
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the database to create"
    },
    "region": {
      "type": "string",
      "description": "Region to provision the database in"
    }
  }
}

Kaynaklar

Bu sunucu herhangi bir kaynak sunmuyor.

Prompt'lar

Bu sunucu herhangi bir prompt sunmuyor.

Sunucu bilgileri

Yazar
Prisma (@prisma)
Repository
https://github.com/prisma/mcp
Yıldızlar
0
Son güncelleme
12 Temmuz 2026