Neon · Capability

Neon Management API — Operations

Neon Management API — Operations. 2 operations. Lead operation: List project operations. Self-contained Naftiko capability covering one Neon business surface.

Run with Naftiko NeonOperations

What You Can Do

GET
Listprojectoperations — List project operations
/v1/projects/{project-id}/operations
GET
Getprojectoperation — Retrieve operation details
/v1/projects/{project-id}/operations/{operation-id}

MCP Tools

list-project-operations

List project operations

read-only idempotent
retrieve-operation-details

Retrieve operation details

read-only idempotent

Capability Spec

management-operations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Neon Management API — Operations
  description: 'Neon Management API — Operations. 2 operations. Lead operation: List project operations. Self-contained Naftiko
    capability covering one Neon business surface.'
  tags:
  - Neon
  - Operations
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    NEON_API_KEY: NEON_API_KEY
capability:
  consumes:
  - type: http
    namespace: management-operations
    baseUri: https://console.neon.tech/api/v2
    description: Neon Management API — Operations business capability. Self-contained, no shared references.
    resources:
    - name: projects-project_id-operations
      path: /projects/{project_id}/operations
      operations:
      - name: listprojectoperations
        method: GET
        description: List project operations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: projects-project_id-operations-operation_id
      path: /projects/{project_id}/operations/{operation_id}
      operations:
      - name: getprojectoperation
        method: GET
        description: Retrieve operation details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: operation_id
          in: path
          type: string
          description: The operation ID
          required: true
    authentication:
      type: bearer
      token: '{{env.NEON_API_KEY}}'
  exposes:
  - type: rest
    namespace: management-operations-rest
    port: 8080
    description: REST adapter for Neon Management API — Operations. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/projects/{project-id}/operations
      name: projects-project-id-operations
      description: REST surface for projects-project_id-operations.
      operations:
      - method: GET
        name: listprojectoperations
        description: List project operations
        call: management-operations.listprojectoperations
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/projects/{project-id}/operations/{operation-id}
      name: projects-project-id-operations-operation-id
      description: REST surface for projects-project_id-operations-operation_id.
      operations:
      - method: GET
        name: getprojectoperation
        description: Retrieve operation details
        call: management-operations.getprojectoperation
        with:
          operation_id: rest.operation_id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: management-operations-mcp
    port: 9090
    transport: http
    description: MCP adapter for Neon Management API — Operations. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-project-operations
      description: List project operations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: management-operations.listprojectoperations
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-operation-details
      description: Retrieve operation details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: management-operations.getprojectoperation
      with:
        operation_id: tools.operation_id
      outputParameters:
      - type: object
        mapping: $.