RAWG · Capability

RAWG Video Games Database API — publishers

RAWG Video Games Database API — publishers. 2 operations. Lead operation: Get a list of video game publishers.. Self-contained Naftiko capability covering one Rawg business surface.

Run with Naftiko Rawgpublishers

What You Can Do

GET
Publisherslist — Get a list of video game publishers.
/v1/publishers
GET
Publishersread — Get details of the publisher.
/v1/publishers/{id}

MCP Tools

get-list-video-game-publishers

Get a list of video game publishers.

read-only idempotent
get-details-publisher

Get details of the publisher.

read-only idempotent

Capability Spec

rawg-publishers.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: RAWG Video Games Database API — publishers
  description: 'RAWG Video Games Database API — publishers. 2 operations. Lead operation: Get a list of video game publishers..
    Self-contained Naftiko capability covering one Rawg business surface.'
  tags:
  - Rawg
  - publishers
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    RAWG_API_KEY: RAWG_API_KEY
capability:
  consumes:
  - type: http
    namespace: rawg-publishers
    baseUri: https://api.rawg.io/api
    description: RAWG Video Games Database API — publishers business capability. Self-contained, no shared references.
    resources:
    - name: publishers
      path: /publishers
      operations:
      - name: publisherslist
        method: GET
        description: Get a list of video game publishers.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: page
          in: query
          type: integer
          description: A page number within the paginated result set.
        - name: page_size
          in: query
          type: integer
          description: Number of results to return per page.
    - name: publishers-id
      path: /publishers/{id}
      operations:
      - name: publishersread
        method: GET
        description: Get details of the publisher.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: rawg-publishers-rest
    port: 8080
    description: REST adapter for RAWG Video Games Database API — publishers. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/publishers
      name: publishers
      description: REST surface for publishers.
      operations:
      - method: GET
        name: publisherslist
        description: Get a list of video game publishers.
        call: rawg-publishers.publisherslist
        with:
          page: rest.page
          page_size: rest.page_size
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/publishers/{id}
      name: publishers-id
      description: REST surface for publishers-id.
      operations:
      - method: GET
        name: publishersread
        description: Get details of the publisher.
        call: rawg-publishers.publishersread
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: rawg-publishers-mcp
    port: 9090
    transport: http
    description: MCP adapter for RAWG Video Games Database API — publishers. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: get-list-video-game-publishers
      description: Get a list of video game publishers.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rawg-publishers.publisherslist
      with:
        page: tools.page
        page_size: tools.page_size
      outputParameters:
      - type: object
        mapping: $.
    - name: get-details-publisher
      description: Get details of the publisher.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rawg-publishers.publishersread
      outputParameters:
      - type: object
        mapping: $.