game

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

Single game by guid or id.

Parameters

NameTypeRequiredDescription
guid_or_idstringyes

Example call

Arguments

{
  "guid_or_id": "20674"
}

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":"game","arguments":{"guid_or_id":"20674"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('game', {
  "guid_or_id": "20674"
});

Response shape

FieldTypeDescription
errorstringError message if not found
idnumberGame ID
guidstringGlobally unique identifier
namestringGame name
deckstringShort description
descriptionstringFull description
imageobjectGame image data
original_release_datestringRelease date
platformsarrayPlatforms available
genresarrayGame genres
developersarrayDevelopment companies
publishersarrayPublishing companies
urlstringGiant Bomb URL
status_codenumberHTTP status code
versionstringAPI version
Full JSON Schema
{
  "type": "object",
  "description": "Single game details",
  "properties": {
    "error": {
      "type": "string",
      "description": "Error message if not found"
    },
    "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"
    },
    "description": {
      "type": "string",
      "description": "Full description"
    },
    "image": {
      "type": "object",
      "description": "Game image data"
    },
    "original_release_date": {
      "type": "string",
      "description": "Release date"
    },
    "platforms": {
      "type": "array",
      "description": "Platforms available"
    },
    "genres": {
      "type": "array",
      "description": "Game genres"
    },
    "developers": {
      "type": "array",
      "description": "Development companies"
    },
    "publishers": {
      "type": "array",
      "description": "Publishing companies"
    },
    "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