Prisma MCP Server
Databasestdiohttp-streaming
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.
Подключение
Добавьте эту конфигурацию в .claude/mcp.json
Подключение:
{
"mcpServers": {
"prisma": {
"command": "npx",
"args": [
"-y",
"prisma",
"mcp"
],
"env": {
"PRISMA_POSTGRES_API_KEY": "<YOUR_PRISMA_POSTGRES_API_KEY>"
}
}
}
}Инструменты (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"
}
}
}Ресурсы
Этот сервер не предоставляет ресурсы.
Промпты
Этот сервер не предоставляет промпты.
Сведения о сервере
- Автор
- Prisma (@prisma)
- Репозиторий
- https://github.com/prisma/mcp
- Звёзды
- 0
- Последнее обновление
- 12 июля 2026 г.