Prisma · Capability

Prisma Postgres Management API — Workspaces

Prisma Postgres Management API — Workspaces. 2 operations. Lead operation: Prisma List all workspaces. Self-contained Naftiko capability covering one Prisma business surface.

Run with Naftiko PrismaWorkspaces

What You Can Do

GET
Listworkspaces — Prisma List all workspaces
/v1/workspaces
GET
Getworkspace — Prisma Get a workspace
/v1/workspaces/{workspaceid}

MCP Tools

prisma-list-all-workspaces

Prisma List all workspaces

read-only idempotent
prisma-get-workspace

Prisma Get a workspace

read-only idempotent

Capability Spec

postgres-management-workspaces.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Prisma Postgres Management API — Workspaces
  description: 'Prisma Postgres Management API — Workspaces. 2 operations. Lead operation: Prisma List all workspaces. Self-contained
    Naftiko capability covering one Prisma business surface.'
  tags:
  - Prisma
  - Workspaces
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    PRISMA_API_KEY: PRISMA_API_KEY
capability:
  consumes:
  - type: http
    namespace: postgres-management-workspaces
    baseUri: https://api.prisma.io/v1
    description: Prisma Postgres Management API — Workspaces business capability. Self-contained, no shared references.
    resources:
    - name: workspaces
      path: /workspaces
      operations:
      - name: listworkspaces
        method: GET
        description: Prisma List all workspaces
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: workspaces-workspaceId
      path: /workspaces/{workspaceId}
      operations:
      - name: getworkspace
        method: GET
        description: Prisma Get a workspace
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.PRISMA_API_KEY}}'
  exposes:
  - type: rest
    namespace: postgres-management-workspaces-rest
    port: 8080
    description: REST adapter for Prisma Postgres Management API — Workspaces. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/workspaces
      name: workspaces
      description: REST surface for workspaces.
      operations:
      - method: GET
        name: listworkspaces
        description: Prisma List all workspaces
        call: postgres-management-workspaces.listworkspaces
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/workspaces/{workspaceid}
      name: workspaces-workspaceid
      description: REST surface for workspaces-workspaceId.
      operations:
      - method: GET
        name: getworkspace
        description: Prisma Get a workspace
        call: postgres-management-workspaces.getworkspace
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: postgres-management-workspaces-mcp
    port: 9090
    transport: http
    description: MCP adapter for Prisma Postgres Management API — Workspaces. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: prisma-list-all-workspaces
      description: Prisma List all workspaces
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: postgres-management-workspaces.listworkspaces
      outputParameters:
      - type: object
        mapping: $.
    - name: prisma-get-workspace
      description: Prisma Get a workspace
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: postgres-management-workspaces.getworkspace
      outputParameters:
      - type: object
        mapping: $.