RAWG · Capability

RAWG Video Games Database API — stores

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

Run with Naftiko Rawgstores

What You Can Do

GET
Storeslist — Get a list of video game storefronts.
/v1/stores
GET
Storesread — Get details of the store.
/v1/stores/{id}

MCP Tools

get-list-video-game-storefronts

Get a list of video game storefronts.

read-only idempotent
get-details-store

Get details of the store.

read-only idempotent

Capability Spec

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