Twilio · Capability

Twilio - Supersim — ESimProfiles

Twilio - Supersim — ESimProfiles. 3 operations. Lead operation: ESimProfiles. Self-contained Naftiko capability covering one Twilio business surface.

Run with Naftiko TwilioESimProfiles

What You Can Do

POST
Createesimprofile — Order an eSIM Profile.
/v1/v1/esimprofiles
GET
Listesimprofile — Retrieve a list of eSIM Profiles.
/v1/v1/esimprofiles
GET
Fetchesimprofile — Fetch an eSIM Profile.
/v1/v1/esimprofiles/{sid}

MCP Tools

order-esim-profile

Order an eSIM Profile.

retrieve-list-esim-profiles

Retrieve a list of eSIM Profiles.

read-only idempotent
fetch-esim-profile

Fetch an eSIM Profile.

read-only idempotent

Capability Spec

super-sim-esimprofiles.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Twilio - Supersim — ESimProfiles
  description: 'Twilio - Supersim — ESimProfiles. 3 operations. Lead operation: ESimProfiles. Self-contained Naftiko capability
    covering one Twilio business surface.'
  tags:
  - Twilio
  - ESimProfiles
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TWILIO_API_KEY: TWILIO_API_KEY
capability:
  consumes:
  - type: http
    namespace: super-sim-esimprofiles
    baseUri: https://supersim.twilio.com
    description: Twilio - Supersim — ESimProfiles business capability. Self-contained, no shared references.
    resources:
    - name: v1-ESimProfiles
      path: /v1/ESimProfiles
      operations:
      - name: createesimprofile
        method: POST
        description: Order an eSIM Profile.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: listesimprofile
        method: GET
        description: Retrieve a list of eSIM Profiles.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: Eid
          in: query
          type: string
          description: List the eSIM Profiles that have been associated with an EId.
        - name: SimSid
          in: query
          type: string
          description: Find the eSIM Profile resource related to a [Sim](https://www.twilio.com/docs/iot/supersim/api/sim-resource)
            resource by providing the SIM SID. Will always retu
        - name: Status
          in: query
          type: string
          description: List the eSIM Profiles that are in a given status.
        - name: PageSize
          in: query
          type: integer
          description: How many resources to return in each list page. The default is 50, and the maximum is 1000.
        - name: Page
          in: query
          type: integer
          description: The page index. This value is simply for client state.
        - name: PageToken
          in: query
          type: string
          description: The page token. This is provided by the API.
    - name: v1-ESimProfiles-Sid
      path: /v1/ESimProfiles/{Sid}
      operations:
      - name: fetchesimprofile
        method: GET
        description: Fetch an eSIM Profile.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: Sid
          in: path
          type: string
          description: The SID of the eSIM Profile resource to fetch.
          required: true
    authentication:
      type: basic
      username: '{{env.TWILIO_USER}}'
      password: '{{env.TWILIO_PASS}}'
  exposes:
  - type: rest
    namespace: super-sim-esimprofiles-rest
    port: 8080
    description: REST adapter for Twilio - Supersim — ESimProfiles. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/esimprofiles
      name: v1-esimprofiles
      description: REST surface for v1-ESimProfiles.
      operations:
      - method: POST
        name: createesimprofile
        description: Order an eSIM Profile.
        call: super-sim-esimprofiles.createesimprofile
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: listesimprofile
        description: Retrieve a list of eSIM Profiles.
        call: super-sim-esimprofiles.listesimprofile
        with:
          Eid: rest.Eid
          SimSid: rest.SimSid
          Status: rest.Status
          PageSize: rest.PageSize
          Page: rest.Page
          PageToken: rest.PageToken
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/esimprofiles/{sid}
      name: v1-esimprofiles-sid
      description: REST surface for v1-ESimProfiles-Sid.
      operations:
      - method: GET
        name: fetchesimprofile
        description: Fetch an eSIM Profile.
        call: super-sim-esimprofiles.fetchesimprofile
        with:
          Sid: rest.Sid
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: super-sim-esimprofiles-mcp
    port: 9090
    transport: http
    description: MCP adapter for Twilio - Supersim — ESimProfiles. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: order-esim-profile
      description: Order an eSIM Profile.
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: super-sim-esimprofiles.createesimprofile
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-list-esim-profiles
      description: Retrieve a list of eSIM Profiles.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: super-sim-esimprofiles.listesimprofile
      with:
        Eid: tools.Eid
        SimSid: tools.SimSid
        Status: tools.Status
        PageSize: tools.PageSize
        Page: tools.Page
        PageToken: tools.PageToken
      outputParameters:
      - type: object
        mapping: $.
    - name: fetch-esim-profile
      description: Fetch an eSIM Profile.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: super-sim-esimprofiles.fetchesimprofile
      with:
        Sid: tools.Sid
      outputParameters:
      - type: object
        mapping: $.