E2B · Capability

E2B Team API — Teams

E2B Team API — Teams. Inspect team identity and team-level sandbox metrics.

E2B Team API — Teams 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 3 read-only operations. Lead operation: E2B List Teams For Current User. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include E2B, Teams, Metrics, and Identity.

Run with Naftiko E2BTeamsMetricsIdentity

MCP Tools

e2b-list-teams

E2B List Teams For Current User

read-only
e2b-get-team-metrics

E2B Get Team Sandbox Metrics

read-only
e2b-get-team-max-metrics

E2B Get Team Maximum Sandbox Metrics

read-only

Capability Spec

teams-teams.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: E2B Team API — Teams
  description: 'E2B Team API — Teams. Inspect team identity and team-level sandbox metrics.'
  tags:
  - E2B
  - Teams
  - Metrics
  - Identity
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    E2B_API_KEY: E2B_API_KEY
capability:
  consumes:
  - type: http
    namespace: teams-teams
    baseUri: https://api.e2b.app
    description: Read team identity and aggregated sandbox metrics.
    resources:
    - name: teams
      path: /teams
      operations:
      - name: listteams
        method: GET
        description: E2B List Teams For Current User
    - name: team-metrics
      path: /teams/{teamID}/metrics
      operations:
      - name: getteammetrics
        method: GET
        description: E2B Get Team Sandbox Metrics
        inputParameters:
        - name: teamID
          in: path
          type: string
          required: true
    - name: team-metrics-max
      path: /teams/{teamID}/metrics/max
      operations:
      - name: getteammaxmetrics
        method: GET
        description: E2B Get Team Maximum Sandbox Metrics
        inputParameters:
        - name: teamID
          in: path
          type: string
          required: true
    authentication:
      type: apikey
      key: X-API-Key
      value: '{{env.E2B_API_KEY}}'
      placement: header
  exposes:
  - type: mcp
    namespace: teams-teams-mcp
    port: 9090
    transport: http
    description: MCP tools for inspecting E2B teams.
    tools:
    - name: e2b-list-teams
      description: E2B List Teams For Current User
      hints:
        readOnly: true
      call: teams-teams.listteams
    - name: e2b-get-team-metrics
      description: E2B Get Team Sandbox Metrics
      hints:
        readOnly: true
      call: teams-teams.getteammetrics
      with:
        teamID: tools.teamID
    - name: e2b-get-team-max-metrics
      description: E2B Get Team Maximum Sandbox Metrics
      hints:
        readOnly: true
      call: teams-teams.getteammaxmetrics
      with:
        teamID: tools.teamID