Telnyx · Capability

Telnyx API — Mobile Voice Connections

Telnyx API — Mobile Voice Connections. 5 operations. Lead operation: List Mobile Voice Connections. Self-contained Naftiko capability covering one Telnyx business surface.

Run with Naftiko TelnyxMobile Voice Connections

What You Can Do

GET
Listmobilevoiceconnections — List Mobile Voice Connections
/v1/v2/mobile-voice-connections
POST
Createmobilevoiceconnection — Create a Mobile Voice Connection
/v1/v2/mobile-voice-connections
DELETE
Deletemobilevoiceconnection — Delete a Mobile Voice Connection
/v1/v2/mobile-voice-connections/{id}
GET
Retrievemobilevoiceconnection — Retrieve a Mobile Voice Connection
/v1/v2/mobile-voice-connections/{id}
PATCH
Updatemobilevoiceconnection — Update a Mobile Voice Connection
/v1/v2/mobile-voice-connections/{id}

MCP Tools

list-mobile-voice-connections

List Mobile Voice Connections

read-only idempotent
create-mobile-voice-connection

Create a Mobile Voice Connection

delete-mobile-voice-connection

Delete a Mobile Voice Connection

idempotent
retrieve-mobile-voice-connection

Retrieve a Mobile Voice Connection

read-only idempotent
update-mobile-voice-connection

Update a Mobile Voice Connection

idempotent

Capability Spec

telnyx-mobile-voice-connections.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Telnyx API — Mobile Voice Connections
  description: 'Telnyx API — Mobile Voice Connections. 5 operations. Lead operation: List Mobile Voice Connections. Self-contained
    Naftiko capability covering one Telnyx business surface.'
  tags:
  - Telnyx
  - Mobile Voice Connections
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TELNYX_API_KEY: TELNYX_API_KEY
capability:
  consumes:
  - type: http
    namespace: telnyx-mobile-voice-connections
    baseUri: https://api.telnyx.com/v2
    description: Telnyx API — Mobile Voice Connections business capability. Self-contained, no shared references.
    resources:
    - name: v2-mobile_voice_connections
      path: /v2/mobile_voice_connections
      operations:
      - name: listmobilevoiceconnections
        method: GET
        description: List Mobile Voice Connections
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: page[number]
          in: query
          type: integer
          description: The page number to load
        - name: page[size]
          in: query
          type: integer
          description: The size of the page
        - name: filter[connection_name][contains]
          in: query
          type: string
          description: Filter by connection name containing the given string
        - name: sort
          in: query
          type: string
          description: Sort by field (e.g., created_at, connection_name, active). Prefix with - for descending order.
      - name: createmobilevoiceconnection
        method: POST
        description: Create a Mobile Voice Connection
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: v2-mobile_voice_connections-id
      path: /v2/mobile_voice_connections/{id}
      operations:
      - name: deletemobilevoiceconnection
        method: DELETE
        description: Delete a Mobile Voice Connection
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: The ID of the mobile voice connection
          required: true
      - name: retrievemobilevoiceconnection
        method: GET
        description: Retrieve a Mobile Voice Connection
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: The ID of the mobile voice connection
          required: true
      - name: updatemobilevoiceconnection
        method: PATCH
        description: Update a Mobile Voice Connection
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: The ID of the mobile voice connection
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.TELNYX_API_KEY}}'
  exposes:
  - type: rest
    namespace: telnyx-mobile-voice-connections-rest
    port: 8080
    description: REST adapter for Telnyx API — Mobile Voice Connections. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v2/mobile-voice-connections
      name: v2-mobile-voice-connections
      description: REST surface for v2-mobile_voice_connections.
      operations:
      - method: GET
        name: listmobilevoiceconnections
        description: List Mobile Voice Connections
        call: telnyx-mobile-voice-connections.listmobilevoiceconnections
        with:
          page[number]: rest.page[number]
          page[size]: rest.page[size]
          filter[connection_name][contains]: rest.filter[connection_name][contains]
          sort: rest.sort
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createmobilevoiceconnection
        description: Create a Mobile Voice Connection
        call: telnyx-mobile-voice-connections.createmobilevoiceconnection
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v2/mobile-voice-connections/{id}
      name: v2-mobile-voice-connections-id
      description: REST surface for v2-mobile_voice_connections-id.
      operations:
      - method: DELETE
        name: deletemobilevoiceconnection
        description: Delete a Mobile Voice Connection
        call: telnyx-mobile-voice-connections.deletemobilevoiceconnection
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: retrievemobilevoiceconnection
        description: Retrieve a Mobile Voice Connection
        call: telnyx-mobile-voice-connections.retrievemobilevoiceconnection
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updatemobilevoiceconnection
        description: Update a Mobile Voice Connection
        call: telnyx-mobile-voice-connections.updatemobilevoiceconnection
        with:
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: telnyx-mobile-voice-connections-mcp
    port: 9090
    transport: http
    description: MCP adapter for Telnyx API — Mobile Voice Connections. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-mobile-voice-connections
      description: List Mobile Voice Connections
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: telnyx-mobile-voice-connections.listmobilevoiceconnections
      with:
        page[number]: tools.page[number]
        page[size]: tools.page[size]
        filter[connection_name][contains]: tools.filter[connection_name][contains]
        sort: tools.sort
      outputParameters:
      - type: object
        mapping: $.
    - name: create-mobile-voice-connection
      description: Create a Mobile Voice Connection
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: telnyx-mobile-voice-connections.createmobilevoiceconnection
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-mobile-voice-connection
      description: Delete a Mobile Voice Connection
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: telnyx-mobile-voice-connections.deletemobilevoiceconnection
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-mobile-voice-connection
      description: Retrieve a Mobile Voice Connection
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: telnyx-mobile-voice-connections.retrievemobilevoiceconnection
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: update-mobile-voice-connection
      description: Update a Mobile Voice Connection
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: telnyx-mobile-voice-connections.updatemobilevoiceconnection
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.