prisma-postgres
$
npx mdskill add vm0-ai/vm0-skills/prisma-postgresManage Prisma Postgres projects via official API
- Creates, updates, and lists cloud-hosted database instances
- Depends on Prisma Management API and bearer token authentication
- Executes requests when user mentions Prisma database or acceleration
- Returns structured JSON responses with project metadata and IDs
SKILL.md
.github/skills/prisma-postgresView on GitHub ↗
---
name: prisma-postgres
description: Prisma Postgres API for database. Use when user mentions "Prisma Postgres",
"Prisma database", or asks about Prisma acceleration.
---
## Troubleshooting
If requests fail, run `zero doctor check-connector --env-name PRISMA_POSTGRES_TOKEN` or `zero doctor check-connector --url https://api.prisma.io/v1/projects --method GET`
## Core APIs
### List Projects
```bash
curl -s "https://api.prisma.io/v1/projects" --header "Authorization: Bearer $PRISMA_POSTGRES_TOKEN" | jq '.[] | {id, name, createdAt}'
```
Docs: https://www.prisma.io/docs/postgres/introduction/management-api
### Get Project Details
Replace `<project-id>` with the actual project ID:
```bash
curl -s "https://api.prisma.io/v1/projects/<project-id>" --header "Authorization: Bearer $PRISMA_POSTGRES_TOKEN" | jq '{id, name, createdAt}'
```
### Create Project
Write to `/tmp/prisma_request.json`:
```json
{
"name": "my-project",
"region": "us-east-1",
"createDatabase": true
}
```
```bash
curl -s -X POST "https://api.prisma.io/v1/projects" --header "Authorization: Bearer $PRISMA_POSTGRES_TOKEN" --header "Content-Type: application/json" -d @/tmp/prisma_request.json | jq '{id, name, databases}'
```
Available regions can be listed with the regions endpoint below.
### Update Project
Replace `<project-id>` with the actual project ID.
Write to `/tmp/prisma_request.json`:
```json
{
"name": "updated-project-name"
}
```
```bash
curl -s -X PATCH "https://api.prisma.io/v1/projects/<project-id>" --header "Authorization: Bearer $PRISMA_POSTGRES_TOKEN" --header "Content-Type: application/json" -d @/tmp/prisma_request.json | jq '{id, name}'
```
### Delete Project
Replace `<project-id>` with the actual project ID:
```bash
curl -s -X DELETE "https://api.prisma.io/v1/projects/<project-id>" --header "Authorization: Bearer $PRISMA_POSTGRES_TOKEN" -w "\nHTTP Status: %{http_code}\n"
```
Returns HTTP 204 on success.
### List Databases
List all databases, optionally filtered by project:
```bash
curl -s "https://api.prisma.io/v1/databases?projectId=<project-id>" --header "Authorization: Bearer $PRISMA_POSTGRES_TOKEN" | jq '.[] | {id, name, region, createdAt}'
```
### Get Database Details
Replace `<database-id>` with the actual database ID:
```bash
curl -s "https://api.prisma.io/v1/databases/<database-id>" --header "Authorization: Bearer $PRISMA_POSTGRES_TOKEN" | jq '{id, name, region, connections}'
```
### Create Database
Replace `<project-id>` with the actual project ID.
Write to `/tmp/prisma_request.json`:
```json
{
"name": "my-database",
"region": "us-east-1"
}
```
```bash
curl -s -X POST "https://api.prisma.io/v1/projects/<project-id>/databases" --header "Authorization: Bearer $PRISMA_POSTGRES_TOKEN" --header "Content-Type: application/json" -d @/tmp/prisma_request.json | jq '{id, name, region, connections}'
```
### Update Database
Replace `<database-id>` with the actual database ID.
Write to `/tmp/prisma_request.json`:
```json
{
"name": "renamed-database"
}
```
```bash
curl -s -X PATCH "https://api.prisma.io/v1/databases/<database-id>" --header "Authorization: Bearer $PRISMA_POSTGRES_TOKEN" --header "Content-Type: application/json" -d @/tmp/prisma_request.json | jq '{id, name}'
```
### Delete Database
Replace `<database-id>` with the actual database ID (cannot delete default databases):
```bash
curl -s -X DELETE "https://api.prisma.io/v1/databases/<database-id>" --header "Authorization: Bearer $PRISMA_POSTGRES_TOKEN" -w "\nHTTP Status: %{http_code}\n"
```
Returns HTTP 204 on success.
### List Connections
List all connections for a specific database. Replace `<database-id>`:
```bash
curl -s "https://api.prisma.io/v1/databases/<database-id>/connections" --header "Authorization: Bearer $PRISMA_POSTGRES_TOKEN" | jq '.[] | {id, name, endpoints}'
```
### Create Connection
Create a new connection string for a database. Replace `<database-id>`:
```bash
curl -s -X POST "https://api.prisma.io/v1/databases/<database-id>/connections" --header "Authorization: Bearer $PRISMA_POSTGRES_TOKEN" --header "Content-Type: application/json" -d '{"name": "my-connection"}' | jq '{id, name, endpoints}'
```
The response includes connection strings for direct, pooled, and accelerate endpoints.
### Delete Connection
Replace `<connection-id>` with the actual connection ID:
```bash
curl -s -X DELETE "https://api.prisma.io/v1/connections/<connection-id>" --header "Authorization: Bearer $PRISMA_POSTGRES_TOKEN" -w "\nHTTP Status: %{http_code}\n"
```
Returns HTTP 204 on success.
### List Database Backups
Replace `<database-id>` with the actual database ID:
```bash
curl -s "https://api.prisma.io/v1/databases/<database-id>/backups?limit=10" --header "Authorization: Bearer $PRISMA_POSTGRES_TOKEN" | jq '.[] | {id, createdAt}'
```
### Restore Database from Backup
Replace `<target-database-id>` with the database to restore into.
Write to `/tmp/prisma_request.json`:
```json
{
"source": {
"type": "backup",
"databaseId": "<source-database-id>",
"backupId": "<backup-id>"
}
}
```
```bash
curl -s -X POST "https://api.prisma.io/v1/databases/<target-database-id>/restore" --header "Authorization: Bearer $PRISMA_POSTGRES_TOKEN" --header "Content-Type: application/json" -d @/tmp/prisma_request.json | jq '{id, name, status}'
```
Cannot restore to default databases.
### Get Database Usage Metrics
Replace `<database-id>` with the actual database ID:
```bash
curl -s "https://api.prisma.io/v1/databases/<database-id>/usage?startDate=2025-01-01T00:00:00Z&endDate=2025-01-31T23:59:59Z" --header "Authorization: Bearer $PRISMA_POSTGRES_TOKEN" | jq .
```
Returns operations (ops) and storage (GiB) metrics for the specified period.
### List Available Regions
```bash
curl -s "https://api.prisma.io/v1/regions/postgres" --header "Authorization: Bearer $PRISMA_POSTGRES_TOKEN" | jq '.[] | {id, displayName, status}'
```
### List Workspaces
```bash
curl -s "https://api.prisma.io/v1/workspaces" --header "Authorization: Bearer $PRISMA_POSTGRES_TOKEN" | jq '.[] | {id, name}'
```
## Guidelines
1. **Default database**: Projects created with `createDatabase: true` include a default database that cannot be deleted
2. **Regions**: Choose the region closest to your application; databases cannot be moved after creation
3. **Connection types**: Each database connection provides direct, pooled, and accelerate endpoints for different use cases
4. **Backups**: Remote database backups are not supported; use the restore endpoint to restore from existing backups
5. **Pagination**: List endpoints support `cursor` and `limit` query parameters for pagination (default limit: 100)
6. **Rate limits**: API rate limits apply; if you receive HTTP 429, implement exponential backoff
More from vm0-ai/vm0-skills
- account-reconciliationPerform account reconciliations comparing general ledger balances against subledgers, bank statements, or external records. Use for bank reconciliation, GL-to-subledger reconciliation, intercompany reconciliation, balance sheet reconciliation, reconciling item analysis, outstanding item aging, or clearing open items.
- agentphoneBuild AI phone agents with AgentPhone API. Use when the user wants to make phone calls, send/receive SMS, manage phone numbers, create voice agents, set up webhooks, or check usage — anything related to telephony, phone numbers, or voice AI.
- ahrefsAhrefs SEO API for backlink and keyword analysis. Use when user mentions
- amplitudeAmplitude product analytics API. Use when user mentions "Amplitude",
- analysis-qaQuality-check a data analysis before sharing — verify joins, aggregations, denominators, time ranges, and metric definitions. Detect pitfalls like survivorship bias, average-of-averages, join explosion, timezone mismatches, incomplete periods, and selection bias. Includes documentation templates for reproducible analyses.
- anthropic-managed-agentsAnthropic Managed Agents API for programmatically creating, running, and streaming AI agents on Anthropic's cloud infrastructure. Use when the user mentions "Managed Agents", "Anthropic agent sessions", or needs to create/run/stream an Anthropic agent with tool use (bash, git, web), attach GitHub repositories, or inject secrets via Vault. Do NOT use for standard Claude Messages API — use the Claude API skill instead.
- apifyApify web scraping platform. Use when user mentions "scrape website",
- asanaAsana API for tasks and projects. Use when user mentions "Asana", "asana.com",
- atlassianAtlassian API for Confluence and Jira. Use when user mentions "Confluence
- attioAttio REST API for AI-native CRM operations — manage companies, people, deals, and custom objects, plus notes, tasks, lists, and comments. Use when the user mentions "Attio", "CRM record", "create company", "add person", "list entry", "CRM note", or "CRM task".