diff --git a/servers/com.prisma-mcp-npx.json b/servers/com.prisma-mcp-npx.json new file mode 100644 index 0000000..821e5e0 --- /dev/null +++ b/servers/com.prisma-mcp-npx.json @@ -0,0 +1,56 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "com.prisma-mcp-npx", + "name": "Prisma (npx)", + "alias": "prisma", + "description": "Manage Prisma databases with migrations, schema introspection, and Prisma Studio. Create Prisma Postgres databases and check migration status.", + "icon": "https://avatars.githubusercontent.com/u/17219288?v=4", + "schema_version": "2.1", + "categories": [ + "database", + "developer-tools" + ], + "tags": [ + "prisma", + "database", + "orm", + "migrations", + "postgres", + "schema" + ], + "transport": { + "type": "stdio", + "command": "npx", + "args": [ + "-y", + "prisma", + "mcp" + ], + "metadata": { + "inputs": [] + } + }, + "auth": { + "type": "none", + "instructions": "No API key required for local use. The server reads database credentials from your project's .env file. Some tools may prompt for Prisma CLI login." + }, + "contributor": { + "name": "Prisma", + "github": "prisma", + "url": "https://www.prisma.io" + }, + "links": { + "repository": "https://github.com/prisma/mcp", + "homepage": "https://www.prisma.io", + "documentation": "https://www.prisma.io/docs/postgres/integrations/mcp-server" + }, + "platforms": [ + "all" + ], + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +}