Statorium · Capability

Statorium American Football API — Teams

Statorium American Football API — Teams. 2 operations. Lead operation: List NFL Teams. Self-contained Naftiko capability covering one Statorium business surface.

Run with Naftiko StatoriumTeams

What You Can Do

GET
Listnflteams — List NFL Teams
/v1/nfl/teams
GET
Getnflteam — Get NFL Team
/v1/nfl/teams/{teamid}

MCP Tools

list-nfl-teams

List NFL Teams

read-only idempotent
get-nfl-team

Get NFL Team

read-only idempotent

Capability Spec

american-football-teams.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Statorium American Football API — Teams
  description: 'Statorium American Football API — Teams. 2 operations. Lead operation: List NFL Teams. Self-contained Naftiko
    capability covering one Statorium business surface.'
  tags:
  - Statorium
  - Teams
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    STATORIUM_API_KEY: STATORIUM_API_KEY
capability:
  consumes:
  - type: http
    namespace: american-football-teams
    baseUri: https://api.statorium.com/api/v1
    description: Statorium American Football API — Teams business capability. Self-contained, no shared references.
    resources:
    - name: nfl-teams
      path: /nfl/teams/
      operations:
      - name: listnflteams
        method: GET
        description: List NFL Teams
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: conference
          in: query
          type: string
          description: Filter teams by conference.
        - name: division
          in: query
          type: string
          description: Filter teams by division.
    - name: nfl-teams-teamId
      path: /nfl/teams/{teamId}/
      operations:
      - name: getnflteam
        method: GET
        description: Get NFL Team
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: teamId
          in: path
          type: integer
          description: The unique team identifier.
          required: true
    authentication:
      type: apikey
      key: apikey
      value: '{{env.STATORIUM_API_KEY}}'
      placement: query
  exposes:
  - type: rest
    namespace: american-football-teams-rest
    port: 8080
    description: REST adapter for Statorium American Football API — Teams. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/nfl/teams
      name: nfl-teams
      description: REST surface for nfl-teams.
      operations:
      - method: GET
        name: listnflteams
        description: List NFL Teams
        call: american-football-teams.listnflteams
        with:
          conference: rest.conference
          division: rest.division
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/nfl/teams/{teamid}
      name: nfl-teams-teamid
      description: REST surface for nfl-teams-teamId.
      operations:
      - method: GET
        name: getnflteam
        description: Get NFL Team
        call: american-football-teams.getnflteam
        with:
          teamId: rest.teamId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: american-football-teams-mcp
    port: 9090
    transport: http
    description: MCP adapter for Statorium American Football API — Teams. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-nfl-teams
      description: List NFL Teams
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: american-football-teams.listnflteams
      with:
        conference: tools.conference
        division: tools.division
      outputParameters:
      - type: object
        mapping: $.
    - name: get-nfl-team
      description: Get NFL Team
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: american-football-teams.getnflteam
      with:
        teamId: tools.teamId
      outputParameters:
      - type: object
        mapping: $.