E2B · Capability

E2B Team API — Access Tokens

E2B Team API — Access Tokens. List, create, and revoke CLI/CI access tokens.

E2B Team API — Access Tokens is a Naftiko capability published by E2B, one of 13 capabilities the APIs.io network indexes for this provider. It bundles 3 operations.

The capability includes 1 read-only operation and 2 state-changing operations. Lead operation: E2B List Access Tokens. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include E2B, Teams, Access Tokens, and CLI.

Run with Naftiko E2BTeamsAccess TokensCLI

MCP Tools

e2b-list-access-tokens

E2B List Access Tokens

read-only
e2b-create-access-token

E2B Create An Access Token

e2b-delete-access-token

E2B Revoke An Access Token

idempotent

Capability Spec

teams-access-tokens.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: E2B Team API — Access Tokens
  description: 'E2B Team API — Access Tokens. List, create, and revoke CLI/CI access tokens.'
  tags:
  - E2B
  - Teams
  - Access Tokens
  - CLI
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    E2B_ACCESS_TOKEN: E2B_ACCESS_TOKEN
capability:
  consumes:
  - type: http
    namespace: teams-access-tokens
    baseUri: https://api.e2b.app
    description: Manage CLI/CI access tokens for the team.
    resources:
    - name: access-tokens
      path: /access-tokens
      operations:
      - name: listaccesstokens
        method: GET
        description: E2B List Access Tokens
      - name: createaccesstoken
        method: POST
        description: E2B Create An Access Token
        inputParameters:
        - name: body
          in: body
          type: object
          required: true
    - name: access-token
      path: /access-tokens/{accessTokenID}
      operations:
      - name: deleteaccesstoken
        method: DELETE
        description: E2B Revoke An Access Token
        inputParameters:
        - name: accessTokenID
          in: path
          type: string
          required: true
    authentication:
      type: bearer
      value: '{{env.E2B_ACCESS_TOKEN}}'
      placement: header
  exposes:
  - type: mcp
    namespace: teams-access-tokens-mcp
    port: 9090
    transport: http
    description: MCP tools for managing CLI access tokens.
    tools:
    - name: e2b-list-access-tokens
      description: E2B List Access Tokens
      hints:
        readOnly: true
      call: teams-access-tokens.listaccesstokens
    - name: e2b-create-access-token
      description: E2B Create An Access Token
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: teams-access-tokens.createaccesstoken
      with:
        body: tools.body
    - name: e2b-delete-access-token
      description: E2B Revoke An Access Token
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: teams-access-tokens.deleteaccesstoken
      with:
        accessTokenID: tools.accessTokenID