Twilio · Capability

Twilio Messaging API — Alpha Senders

Twilio Messaging API — Alpha Senders. 2 operations. Lead operation: Twilio List Alpha Senders in a Messaging Service. Self-contained Naftiko capability covering one Twilio business surface.

Run with Naftiko TwilioAlpha Senders

What You Can Do

GET
Listalphasenders — Twilio List Alpha Senders in a Messaging Service
/v1/services/{servicesid}/alphasenders
POST
Addalphasender — Twilio Add an Alpha Sender to a Messaging Service
/v1/services/{servicesid}/alphasenders

MCP Tools

twilio-list-alpha-senders-messaging

Twilio List Alpha Senders in a Messaging Service

read-only idempotent
twilio-add-alpha-sender-messaging

Twilio Add an Alpha Sender to a Messaging Service

Capability Spec

messaging-alpha-senders.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Twilio Messaging API — Alpha Senders
  description: 'Twilio Messaging API — Alpha Senders. 2 operations. Lead operation: Twilio List Alpha Senders in a Messaging
    Service. Self-contained Naftiko capability covering one Twilio business surface.'
  tags:
  - Twilio
  - Alpha Senders
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TWILIO_API_KEY: TWILIO_API_KEY
capability:
  consumes:
  - type: http
    namespace: messaging-alpha-senders
    baseUri: https://api.twilio.com/2010-04-01
    description: Twilio Messaging API — Alpha Senders business capability. Self-contained, no shared references.
    resources:
    - name: Services-ServiceSid-AlphaSenders
      path: /Services/{ServiceSid}/AlphaSenders
      operations:
      - name: listalphasenders
        method: GET
        description: Twilio List Alpha Senders in a Messaging Service
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: addalphasender
        method: POST
        description: Twilio Add an Alpha Sender to a Messaging Service
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: basic
      username: '{{env.TWILIO_USER}}'
      password: '{{env.TWILIO_PASS}}'
  exposes:
  - type: rest
    namespace: messaging-alpha-senders-rest
    port: 8080
    description: REST adapter for Twilio Messaging API — Alpha Senders. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/services/{servicesid}/alphasenders
      name: services-servicesid-alphasenders
      description: REST surface for Services-ServiceSid-AlphaSenders.
      operations:
      - method: GET
        name: listalphasenders
        description: Twilio List Alpha Senders in a Messaging Service
        call: messaging-alpha-senders.listalphasenders
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: addalphasender
        description: Twilio Add an Alpha Sender to a Messaging Service
        call: messaging-alpha-senders.addalphasender
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: messaging-alpha-senders-mcp
    port: 9090
    transport: http
    description: MCP adapter for Twilio Messaging API — Alpha Senders. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: twilio-list-alpha-senders-messaging
      description: Twilio List Alpha Senders in a Messaging Service
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: messaging-alpha-senders.listalphasenders
      outputParameters:
      - type: object
        mapping: $.
    - name: twilio-add-alpha-sender-messaging
      description: Twilio Add an Alpha Sender to a Messaging Service
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: messaging-alpha-senders.addalphasender
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.