elevenlabs · Capability

ElevenLabs Conversational AI API — Tools

ElevenLabs Conversational AI API — Tools. 3 operations. Lead operation: List tools. Self-contained Naftiko capability covering one Elevenlabs business surface.

Run with Naftiko ElevenlabsTools

What You Can Do

GET
Listtools — List tools
/v1/v1/convai/tools
POST
Createtool — Create tool
/v1/v1/convai/tools
DELETE
Deletetool — Delete tool
/v1/v1/convai/tools/{tool-id}

MCP Tools

list-tools

List tools

read-only idempotent
create-tool

Create tool

delete-tool

Delete tool

idempotent

Capability Spec

conversational-ai-tools.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: ElevenLabs Conversational AI API — Tools
  description: 'ElevenLabs Conversational AI API — Tools. 3 operations. Lead operation: List tools. Self-contained Naftiko
    capability covering one Elevenlabs business surface.'
  tags:
  - Elevenlabs
  - Tools
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ELEVENLABS_API_KEY: ELEVENLABS_API_KEY
capability:
  consumes:
  - type: http
    namespace: conversational-ai-tools
    baseUri: https://api.elevenlabs.io
    description: ElevenLabs Conversational AI API — Tools business capability. Self-contained, no shared references.
    resources:
    - name: v1-convai-tools
      path: /v1/convai/tools
      operations:
      - name: listtools
        method: GET
        description: List tools
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createtool
        method: POST
        description: Create tool
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: v1-convai-tools-tool_id
      path: /v1/convai/tools/{tool_id}
      operations:
      - name: deletetool
        method: DELETE
        description: Delete tool
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: tool_id
          in: path
          type: string
          description: The identifier of the tool to delete.
          required: true
    authentication:
      type: apikey
      key: xi-api-key
      value: '{{env.ELEVENLABS_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: conversational-ai-tools-rest
    port: 8080
    description: REST adapter for ElevenLabs Conversational AI API — Tools. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/convai/tools
      name: v1-convai-tools
      description: REST surface for v1-convai-tools.
      operations:
      - method: GET
        name: listtools
        description: List tools
        call: conversational-ai-tools.listtools
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createtool
        description: Create tool
        call: conversational-ai-tools.createtool
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/convai/tools/{tool-id}
      name: v1-convai-tools-tool-id
      description: REST surface for v1-convai-tools-tool_id.
      operations:
      - method: DELETE
        name: deletetool
        description: Delete tool
        call: conversational-ai-tools.deletetool
        with:
          tool_id: rest.tool_id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: conversational-ai-tools-mcp
    port: 9090
    transport: http
    description: MCP adapter for ElevenLabs Conversational AI API — Tools. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-tools
      description: List tools
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: conversational-ai-tools.listtools
      outputParameters:
      - type: object
        mapping: $.
    - name: create-tool
      description: Create tool
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: conversational-ai-tools.createtool
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-tool
      description: Delete tool
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: conversational-ai-tools.deletetool
      with:
        tool_id: tools.tool_id
      outputParameters:
      - type: object
        mapping: $.