Vapi · Capability

Vapi API — Observability/Scorecard

Vapi API — Observability/Scorecard. 5 operations. Lead operation: List Scorecards. Self-contained Naftiko capability covering one Vapi business surface.

Run with Naftiko VapiObservability/Scorecard

What You Can Do

GET
Scorecardcontrollergetpaginated — List Scorecards
/v1/observability/scorecard
POST
Scorecardcontrollercreate — Create Scorecard
/v1/observability/scorecard
GET
Scorecardcontrollerget — Get Scorecard
/v1/observability/scorecard/{id}
PATCH
Scorecardcontrollerupdate — Update Scorecard
/v1/observability/scorecard/{id}
DELETE
Scorecardcontrollerremove — Delete Scorecard
/v1/observability/scorecard/{id}

MCP Tools

list-scorecards

List Scorecards

read-only idempotent
create-scorecard

Create Scorecard

get-scorecard

Get Scorecard

read-only idempotent
update-scorecard

Update Scorecard

idempotent
delete-scorecard

Delete Scorecard

idempotent

Capability Spec

vapi-observability-scorecard.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Vapi API — Observability/Scorecard
  description: 'Vapi API — Observability/Scorecard. 5 operations. Lead operation: List Scorecards. Self-contained Naftiko
    capability covering one Vapi business surface.'
  tags:
  - Vapi
  - Observability/Scorecard
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    VAPI_API_KEY: VAPI_API_KEY
capability:
  consumes:
  - type: http
    namespace: vapi-observability-scorecard
    baseUri: https://api.vapi.ai
    description: Vapi API — Observability/Scorecard business capability. Self-contained, no shared references.
    resources:
    - name: observability-scorecard
      path: /observability/scorecard
      operations:
      - name: scorecardcontrollergetpaginated
        method: GET
        description: List Scorecards
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: query
          type: string
        - name: page
          in: query
          type: number
          description: This is the page number to return. Defaults to 1.
        - name: sortOrder
          in: query
          type: string
          description: This is the sort order for pagination. Defaults to 'DESC'.
        - name: sortBy
          in: query
          type: string
          description: This is the column to sort by. Defaults to 'createdAt'.
        - name: limit
          in: query
          type: number
          description: This is the maximum number of items to return. Defaults to 100.
        - name: createdAtGt
          in: query
          type: string
          description: This will return items where the createdAt is greater than the specified value.
        - name: createdAtLt
          in: query
          type: string
          description: This will return items where the createdAt is less than the specified value.
        - name: createdAtGe
          in: query
          type: string
          description: This will return items where the createdAt is greater than or equal to the specified value.
        - name: createdAtLe
          in: query
          type: string
          description: This will return items where the createdAt is less than or equal to the specified value.
        - name: updatedAtGt
          in: query
          type: string
          description: This will return items where the updatedAt is greater than the specified value.
        - name: updatedAtLt
          in: query
          type: string
          description: This will return items where the updatedAt is less than the specified value.
        - name: updatedAtGe
          in: query
          type: string
          description: This will return items where the updatedAt is greater than or equal to the specified value.
        - name: updatedAtLe
          in: query
          type: string
          description: This will return items where the updatedAt is less than or equal to the specified value.
      - name: scorecardcontrollercreate
        method: POST
        description: Create Scorecard
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: observability-scorecard-id
      path: /observability/scorecard/{id}
      operations:
      - name: scorecardcontrollerget
        method: GET
        description: Get Scorecard
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
      - name: scorecardcontrollerupdate
        method: PATCH
        description: Update Scorecard
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: scorecardcontrollerremove
        method: DELETE
        description: Delete Scorecard
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.VAPI_API_KEY}}'
  exposes:
  - type: rest
    namespace: vapi-observability-scorecard-rest
    port: 8080
    description: REST adapter for Vapi API — Observability/Scorecard. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/observability/scorecard
      name: observability-scorecard
      description: REST surface for observability-scorecard.
      operations:
      - method: GET
        name: scorecardcontrollergetpaginated
        description: List Scorecards
        call: vapi-observability-scorecard.scorecardcontrollergetpaginated
        with:
          id: rest.id
          page: rest.page
          sortOrder: rest.sortOrder
          sortBy: rest.sortBy
          limit: rest.limit
          createdAtGt: rest.createdAtGt
          createdAtLt: rest.createdAtLt
          createdAtGe: rest.createdAtGe
          createdAtLe: rest.createdAtLe
          updatedAtGt: rest.updatedAtGt
          updatedAtLt: rest.updatedAtLt
          updatedAtGe: rest.updatedAtGe
          updatedAtLe: rest.updatedAtLe
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: scorecardcontrollercreate
        description: Create Scorecard
        call: vapi-observability-scorecard.scorecardcontrollercreate
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/observability/scorecard/{id}
      name: observability-scorecard-id
      description: REST surface for observability-scorecard-id.
      operations:
      - method: GET
        name: scorecardcontrollerget
        description: Get Scorecard
        call: vapi-observability-scorecard.scorecardcontrollerget
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: scorecardcontrollerupdate
        description: Update Scorecard
        call: vapi-observability-scorecard.scorecardcontrollerupdate
        with:
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: scorecardcontrollerremove
        description: Delete Scorecard
        call: vapi-observability-scorecard.scorecardcontrollerremove
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: vapi-observability-scorecard-mcp
    port: 9090
    transport: http
    description: MCP adapter for Vapi API — Observability/Scorecard. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-scorecards
      description: List Scorecards
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: vapi-observability-scorecard.scorecardcontrollergetpaginated
      with:
        id: tools.id
        page: tools.page
        sortOrder: tools.sortOrder
        sortBy: tools.sortBy
        limit: tools.limit
        createdAtGt: tools.createdAtGt
        createdAtLt: tools.createdAtLt
        createdAtGe: tools.createdAtGe
        createdAtLe: tools.createdAtLe
        updatedAtGt: tools.updatedAtGt
        updatedAtLt: tools.updatedAtLt
        updatedAtGe: tools.updatedAtGe
        updatedAtLe: tools.updatedAtLe
      outputParameters:
      - type: object
        mapping: $.
    - name: create-scorecard
      description: Create Scorecard
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: vapi-observability-scorecard.scorecardcontrollercreate
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-scorecard
      description: Get Scorecard
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: vapi-observability-scorecard.scorecardcontrollerget
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: update-scorecard
      description: Update Scorecard
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: vapi-observability-scorecard.scorecardcontrollerupdate
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-scorecard
      description: Delete Scorecard
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: vapi-observability-scorecard.scorecardcontrollerremove
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.