games

Pack: giantbomb · Endpoint: https://gateway.pipeworx.io/giantbomb/mcp

List or filter Giant Bomb games with an optional API filter expression and sort field; returns game name, deck, release date, and platform list. NOTE: API offline as of 2026-05.

Parameters

NameTypeRequiredDescription
filterstringno
sortstringno
limitnumberno
offsetnumberno

Example call

Arguments

{
  "limit": 20
}

curl

curl -X POST https://gateway.pipeworx.io/giantbomb/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"games","arguments":{"limit":20}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('games', {
  "limit": 20
});

More examples

{
  "filter": "name:Elden Ring",
  "sort": "original_release_date:desc"
}

Response shape

FieldTypeDescription
errorstringError message if request failed
limitnumberResults limit
offsetnumberResults offset
number_of_page_resultsnumberNumber of results on current page
number_of_total_resultsnumberTotal results available
resultsarrayArray of game results
status_codenumberHTTP status code
versionstringAPI version
Full JSON Schema
{
  "type": "object",
  "description": "List of games with filtering and sorting",
  "properties": {
    "error": {
      "type": "string",
      "description": "Error message if request failed"
    },
    "limit": {
      "type": "number",
      "description": "Results limit"
    },
    "offset": {
      "type": "number",
      "description": "Results offset"
    },
    "number_of_page_results": {
      "type": "number",
      "description": "Number of results on current page"
    },
    "number_of_total_results": {
      "type": "number",
      "description": "Total results available"
    },
    "results": {
      "type": "array",
      "description": "Array of game results",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "number",
            "description": "Game ID"
          },
          "guid": {
            "type": "string",
            "description": "Globally unique identifier"
          },
          "name": {
            "type": "string",
            "description": "Game name"
          },
          "deck": {
            "type": "string",
            "description": "Short description"
          },
          "image": {
            "type": "object",
            "description": "Game image data"
          },
          "original_release_date": {
            "type": "string",
            "description": "Release date"
          },
          "url": {
            "type": "string",
            "description": "Giant Bomb URL"
          }
        }
      }
    },
    "status_code": {
      "type": "number",
      "description": "HTTP status code"
    },
    "version": {
      "type": "string",
      "description": "API version"
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "giantbomb": {
      "url": "https://gateway.pipeworx.io/giantbomb/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026