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
| Name | Type | Required | Description |
|---|---|---|---|
id | number | yes | FreeToGame 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
| Field | Type | Description |
|---|---|---|
id | number | Game ID |
title | string | Game title |
description | string | Full game description |
genre | string | Game genre |
platform | string | Platform availability |
publisher | string | Game publisher name |
developer | string | Game developer name |
release_date | string | Game release date |
game_url | string | URL to play the game |
thumbnail | string | URL to game thumbnail image |
screenshots | array | |
minimum_system_requirements | unknown |
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.