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