elevenlabs · Capability

ElevenLabs Voices API — Voice Settings

ElevenLabs Voices API — Voice Settings. 3 operations. Lead operation: Get default voice settings. Self-contained Naftiko capability covering one Elevenlabs business surface.

Run with Naftiko ElevenlabsVoice Settings

What You Can Do

GET
Getdefaultvoicesettings — Get default voice settings
/v1/v1/voices/settings/default
GET
Getvoicesettings — Get voice settings
/v1/v1/voices/{voice-id}/settings
POST
Editvoicesettings — Edit voice settings
/v1/v1/voices/{voice-id}/settings/edit

MCP Tools

get-default-voice-settings

Get default voice settings

read-only idempotent
get-voice-settings

Get voice settings

read-only idempotent
edit-voice-settings

Edit voice settings

Capability Spec

voices-voice-settings.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: ElevenLabs Voices API — Voice Settings
  description: 'ElevenLabs Voices API — Voice Settings. 3 operations. Lead operation: Get default voice settings. Self-contained
    Naftiko capability covering one Elevenlabs business surface.'
  tags:
  - Elevenlabs
  - Voice Settings
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ELEVENLABS_API_KEY: ELEVENLABS_API_KEY
capability:
  consumes:
  - type: http
    namespace: voices-voice-settings
    baseUri: https://api.elevenlabs.io
    description: ElevenLabs Voices API — Voice Settings business capability. Self-contained, no shared references.
    resources:
    - name: v1-voices-settings-default
      path: /v1/voices/settings/default
      operations:
      - name: getdefaultvoicesettings
        method: GET
        description: Get default voice settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v1-voices-voice_id-settings
      path: /v1/voices/{voice_id}/settings
      operations:
      - name: getvoicesettings
        method: GET
        description: Get voice settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v1-voices-voice_id-settings-edit
      path: /v1/voices/{voice_id}/settings/edit
      operations:
      - name: editvoicesettings
        method: POST
        description: Edit voice settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: xi-api-key
      value: '{{env.ELEVENLABS_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: voices-voice-settings-rest
    port: 8080
    description: REST adapter for ElevenLabs Voices API — Voice Settings. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/voices/settings/default
      name: v1-voices-settings-default
      description: REST surface for v1-voices-settings-default.
      operations:
      - method: GET
        name: getdefaultvoicesettings
        description: Get default voice settings
        call: voices-voice-settings.getdefaultvoicesettings
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/voices/{voice-id}/settings
      name: v1-voices-voice-id-settings
      description: REST surface for v1-voices-voice_id-settings.
      operations:
      - method: GET
        name: getvoicesettings
        description: Get voice settings
        call: voices-voice-settings.getvoicesettings
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/voices/{voice-id}/settings/edit
      name: v1-voices-voice-id-settings-edit
      description: REST surface for v1-voices-voice_id-settings-edit.
      operations:
      - method: POST
        name: editvoicesettings
        description: Edit voice settings
        call: voices-voice-settings.editvoicesettings
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: voices-voice-settings-mcp
    port: 9090
    transport: http
    description: MCP adapter for ElevenLabs Voices API — Voice Settings. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: get-default-voice-settings
      description: Get default voice settings
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: voices-voice-settings.getdefaultvoicesettings
      outputParameters:
      - type: object
        mapping: $.
    - name: get-voice-settings
      description: Get voice settings
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: voices-voice-settings.getvoicesettings
      outputParameters:
      - type: object
        mapping: $.
    - name: edit-voice-settings
      description: Edit voice settings
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: voices-voice-settings.editvoicesettings
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.