Hypixel · Capability

Hypixel Public API — Other

Other surface of the Hypixel Public API. 4 operations. Lead operation: Hypixel Active Network Boosters. Self-contained Naftiko capability covering one Hypixel business surface.

Run with Naftiko HypixelGamingMinecraftOther

What You Can Do

GET
Getboosters — Hypixel Active Network Boosters
/v1/boosters
GET
Getcounts — Hypixel Current Player Counts
/v1/counts
GET
Getleaderboards — Hypixel Current Leaderboards
/v1/leaderboards
GET
Getpunishmentstats — Hypixel Punishment Statistics
/v1/punishmentstats

MCP Tools

active-network-boosters

Hypixel Active Network Boosters

read-only idempotent
current-player-counts

Hypixel Current Player Counts

read-only idempotent
current-leaderboards

Hypixel Current Leaderboards

read-only idempotent
punishment-statistics

Hypixel Punishment Statistics

read-only idempotent

Capability Spec

hypixel-public-api-other.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Hypixel Public API — Other
  description: 'Other surface of the Hypixel Public API. 4 operations. Lead operation: Hypixel Active Network Boosters. Self-contained
    Naftiko capability covering one Hypixel business surface.'
  tags:
  - Hypixel
  - Gaming
  - Minecraft
  - Other
  created: '2026-05-30'
  modified: '2026-05-30'
binds:
- namespace: env
  keys:
    HYPIXEL_API_KEY: HYPIXEL_API_KEY
capability:
  consumes:
  - type: http
    namespace: hypixel-public-api-other
    baseUri: https://api.hypixel.net/v2
    description: Hypixel Public API — Other business capability. Self-contained, no shared references.
    authentication:
      type: apikey
      key: API-Key
      value: '{{env.HYPIXEL_API_KEY}}'
      placement: header
    resources:
    - name: v2-boosters
      path: /boosters
      operations:
      - name: getBoosters
        method: GET
        description: Hypixel Active Network Boosters
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v2-counts
      path: /counts
      operations:
      - name: getCounts
        method: GET
        description: Hypixel Current Player Counts
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v2-leaderboards
      path: /leaderboards
      operations:
      - name: getLeaderboards
        method: GET
        description: Hypixel Current Leaderboards
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v2-punishmentstats
      path: /punishmentstats
      operations:
      - name: getPunishmentstats
        method: GET
        description: Hypixel Punishment Statistics
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: hypixel-public-api-other-rest
    port: 8080
    description: REST adapter for Hypixel Public API — Other. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/boosters
      name: v2-boosters
      description: REST surface for /v2/boosters.
      operations:
      - method: GET
        name: getBoosters
        description: Hypixel Active Network Boosters
        call: hypixel-public-api-other.getBoosters
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/counts
      name: v2-counts
      description: REST surface for /v2/counts.
      operations:
      - method: GET
        name: getCounts
        description: Hypixel Current Player Counts
        call: hypixel-public-api-other.getCounts
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/leaderboards
      name: v2-leaderboards
      description: REST surface for /v2/leaderboards.
      operations:
      - method: GET
        name: getLeaderboards
        description: Hypixel Current Leaderboards
        call: hypixel-public-api-other.getLeaderboards
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/punishmentstats
      name: v2-punishmentstats
      description: REST surface for /v2/punishmentstats.
      operations:
      - method: GET
        name: getPunishmentstats
        description: Hypixel Punishment Statistics
        call: hypixel-public-api-other.getPunishmentstats
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: hypixel-public-api-other-mcp
    port: 9090
    transport: http
    description: MCP adapter for Hypixel Public API — Other. One verb-noun tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: active-network-boosters
      description: Hypixel Active Network Boosters
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: hypixel-public-api-other.getBoosters
      outputParameters:
      - type: object
        mapping: $.
    - name: current-player-counts
      description: Hypixel Current Player Counts
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: hypixel-public-api-other.getCounts
      outputParameters:
      - type: object
        mapping: $.
    - name: current-leaderboards
      description: Hypixel Current Leaderboards
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: hypixel-public-api-other.getLeaderboards
      outputParameters:
      - type: object
        mapping: $.
    - name: punishment-statistics
      description: Hypixel Punishment Statistics
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: hypixel-public-api-other.getPunishmentstats
      outputParameters:
      - type: object
        mapping: $.