Blizzard Entertainment · Capability

World of Warcraft Game Data API — Realms

World of Warcraft Game Data API — Realms. 2 operations. Lead operation: Get Realm Index. Self-contained Naftiko capability covering one Blizzard Entertainment business surface.

Run with Naftiko Blizzard EntertainmentRealms

What You Can Do

GET
Getrealmindex — Get Realm Index
/v1/data/wow/realm/index
GET
Getrealm — Get Realm
/v1/data/wow/realm/{realmslug}

MCP Tools

get-realm-index

Get Realm Index

read-only idempotent
get-realm

Get Realm

read-only idempotent

Capability Spec

blizzard-world-of-warcraft-realms.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: World of Warcraft Game Data API — Realms
  description: 'World of Warcraft Game Data API — Realms. 2 operations. Lead operation: Get Realm Index. Self-contained Naftiko
    capability covering one Blizzard Entertainment business surface.'
  tags:
  - Blizzard Entertainment
  - Realms
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BLIZZARD_ENTERTAINMENT_API_KEY: BLIZZARD_ENTERTAINMENT_API_KEY
capability:
  consumes:
  - type: http
    namespace: blizzard-world-of-warcraft-realms
    baseUri: https://us.api.blizzard.com
    description: World of Warcraft Game Data API — Realms business capability. Self-contained, no shared references.
    resources:
    - name: data-wow-realm-index
      path: /data/wow/realm/index
      operations:
      - name: getrealmindex
        method: GET
        description: Get Realm Index
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: data-wow-realm-realmSlug
      path: /data/wow/realm/{realmSlug}
      operations:
      - name: getrealm
        method: GET
        description: Get Realm
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: realmSlug
          in: path
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.BLIZZARD_ENTERTAINMENT_API_KEY}}'
  exposes:
  - type: rest
    namespace: blizzard-world-of-warcraft-realms-rest
    port: 8080
    description: REST adapter for World of Warcraft Game Data API — Realms. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/data/wow/realm/index
      name: data-wow-realm-index
      description: REST surface for data-wow-realm-index.
      operations:
      - method: GET
        name: getrealmindex
        description: Get Realm Index
        call: blizzard-world-of-warcraft-realms.getrealmindex
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/data/wow/realm/{realmslug}
      name: data-wow-realm-realmslug
      description: REST surface for data-wow-realm-realmSlug.
      operations:
      - method: GET
        name: getrealm
        description: Get Realm
        call: blizzard-world-of-warcraft-realms.getrealm
        with:
          realmSlug: rest.realmSlug
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: blizzard-world-of-warcraft-realms-mcp
    port: 9090
    transport: http
    description: MCP adapter for World of Warcraft Game Data API — Realms. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: get-realm-index
      description: Get Realm Index
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: blizzard-world-of-warcraft-realms.getrealmindex
      outputParameters:
      - type: object
        mapping: $.
    - name: get-realm
      description: Get Realm
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: blizzard-world-of-warcraft-realms.getrealm
      with:
        realmSlug: tools.realmSlug
      outputParameters:
      - type: object
        mapping: $.