Helicone · Capability

helicone-api — Vault

helicone-api — Vault. 4 operations. Lead operation: Vault. Self-contained Naftiko capability covering one Helicone business surface.

Run with Naftiko HeliconeVault

What You Can Do

POST
Addkey — addkey
/v1/v1/vault/add
GET
Getkeybyid — getkeybyid
/v1/v1/vault/key/{providerkeyid}
GET
Getkeys — getkeys
/v1/v1/vault/keys
PATCH
Updatekey — updatekey
/v1/v1/vault/update/{id}

MCP Tools

addkey

addkey

getkeybyid

getkeybyid

read-only idempotent
getkeys

getkeys

read-only idempotent
updatekey

updatekey

idempotent

Capability Spec

helicone-vault.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: helicone-api — Vault
  description: 'helicone-api — Vault. 4 operations. Lead operation: Vault. Self-contained Naftiko capability covering one
    Helicone business surface.'
  tags:
  - Helicone
  - Vault
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    HELICONE_API_KEY: HELICONE_API_KEY
capability:
  consumes:
  - type: http
    namespace: helicone-vault
    baseUri: https://api.helicone.ai
    description: helicone-api — Vault business capability. Self-contained, no shared references.
    resources:
    - name: v1-vault-add
      path: /v1/vault/add
      operations:
      - name: addkey
        method: POST
        description: ''
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: v1-vault-key-providerKeyId
      path: /v1/vault/key/{providerKeyId}
      operations:
      - name: getkeybyid
        method: GET
        description: ''
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: providerKeyId
          in: path
          type: string
          required: true
    - name: v1-vault-keys
      path: /v1/vault/keys
      operations:
      - name: getkeys
        method: GET
        description: ''
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v1-vault-update-id
      path: /v1/vault/update/{id}
      operations:
      - name: updatekey
        method: PATCH
        description: ''
        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
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.HELICONE_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: helicone-vault-rest
    port: 8080
    description: REST adapter for helicone-api — Vault. One Spectral-compliant resource per consumed operation, prefixed with
      /v1.
    resources:
    - path: /v1/v1/vault/add
      name: v1-vault-add
      description: REST surface for v1-vault-add.
      operations:
      - method: POST
        name: addkey
        description: addkey
        call: helicone-vault.addkey
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/vault/key/{providerkeyid}
      name: v1-vault-key-providerkeyid
      description: REST surface for v1-vault-key-providerKeyId.
      operations:
      - method: GET
        name: getkeybyid
        description: getkeybyid
        call: helicone-vault.getkeybyid
        with:
          providerKeyId: rest.providerKeyId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/vault/keys
      name: v1-vault-keys
      description: REST surface for v1-vault-keys.
      operations:
      - method: GET
        name: getkeys
        description: getkeys
        call: helicone-vault.getkeys
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/vault/update/{id}
      name: v1-vault-update-id
      description: REST surface for v1-vault-update-id.
      operations:
      - method: PATCH
        name: updatekey
        description: updatekey
        call: helicone-vault.updatekey
        with:
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: helicone-vault-mcp
    port: 9090
    transport: http
    description: MCP adapter for helicone-api — Vault. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: addkey
      description: addkey
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: helicone-vault.addkey
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: getkeybyid
      description: getkeybyid
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: helicone-vault.getkeybyid
      with:
        providerKeyId: tools.providerKeyId
      outputParameters:
      - type: object
        mapping: $.
    - name: getkeys
      description: getkeys
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: helicone-vault.getkeys
      outputParameters:
      - type: object
        mapping: $.
    - name: updatekey
      description: updatekey
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: helicone-vault.updatekey
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.