get_game

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

Get full details for a free-to-play game by its FreeToGame ID. Returns title, description, genre, platform, publisher, developer, release date, screenshots, and minimum system requirements.

Parameters

NameTypeRequiredDescription
idnumberyesFreeToGame game ID (e.g. 452 for “Valorant”)

Example call

Arguments

{
  "id": 452
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_game', {
  "id": 452
});

More examples

{
  "id": 1
}

Response shape

Always returns: id, title, description, genre, platform, publisher, developer, release_date, game_url, thumbnail, screenshots, minimum_system_requirements

FieldTypeDescription
idnumberGame ID
titlestringGame title
descriptionstringFull game description
genrestringGame genre
platformstringPlatform availability
publisherstringGame publisher name
developerstringGame developer name
release_datestringGame release date
game_urlstringURL to play the game
thumbnailstringURL to game thumbnail image
screenshotsarray
minimum_system_requirementsunknown
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "number",
      "description": "Game ID"
    },
    "title": {
      "type": "string",
      "description": "Game title"
    },
    "description": {
      "type": "string",
      "description": "Full game description"
    },
    "genre": {
      "type": "string",
      "description": "Game genre"
    },
    "platform": {
      "type": "string",
      "description": "Platform availability"
    },
    "publisher": {
      "type": "string",
      "description": "Game publisher name"
    },
    "developer": {
      "type": "string",
      "description": "Game developer name"
    },
    "release_date": {
      "type": "string",
      "description": "Game release date"
    },
    "game_url": {
      "type": "string",
      "description": "URL to play the game"
    },
    "thumbnail": {
      "type": "string",
      "description": "URL to game thumbnail image"
    },
    "screenshots": {
      "type": "array",
      "items": {
        "type": "string",
        "description": "Screenshot image URL"
      }
    },
    "minimum_system_requirements": {
      "oneOf": [
        {
          "type": "null"
        },
        {
          "type": "object",
          "properties": {
            "os": {
              "type": [
                "string",
                "null"
              ],
              "description": "Operating system requirement"
            },
            "processor": {
              "type": [
                "string",
                "null"
              ],
              "description": "Processor requirement"
            },
            "memory": {
              "type": [
                "string",
                "null"
              ],
              "description": "Memory requirement"
            },
            "graphics": {
              "type": [
                "string",
                "null"
              ],
              "description": "Graphics requirement"
            },
            "storage": {
              "type": [
                "string",
                "null"
              ],
              "description": "Storage requirement"
            }
          },
          "required": [
            "os",
            "processor",
            "memory",
            "graphics",
            "storage"
          ]
        }
      ]
    }
  },
  "required": [
    "id",
    "title",
    "description",
    "genre",
    "platform",
    "publisher",
    "developer",
    "release_date",
    "game_url",
    "thumbnail",
    "screenshots",
    "minimum_system_requirements"
  ]
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026