get_game_details
Pack: gamedeals · Endpoint: https://gateway.pipeworx.io/gamedeals/mcp
Get complete pricing history for a game: current deals across all stores, historical low prices, and price trends over time.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | CheapShark game ID (obtained from search_games) |
Example call
Arguments
{
"id": "612834"
}
curl
curl -X POST https://gateway.pipeworx.io/gamedeals/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_game_details","arguments":{"id":"612834"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_game_details', {
"id": "612834"
});
Response shape
Always returns: game_id, name, steam_app_id, thumb, cheapest_price_ever, deals
| Field | Type | Description |
|---|---|---|
game_id | string | CheapShark game ID |
name | string | Full game name |
steam_app_id | string | null | Steam app ID or null if not on Steam |
thumb | string | Thumbnail image URL |
cheapest_price_ever | object | |
deals | array |
Full JSON Schema
{
"type": "object",
"properties": {
"game_id": {
"type": "string",
"description": "CheapShark game ID"
},
"name": {
"type": "string",
"description": "Full game name"
},
"steam_app_id": {
"type": [
"string",
"null"
],
"description": "Steam app ID or null if not on Steam"
},
"thumb": {
"type": "string",
"description": "Thumbnail image URL"
},
"cheapest_price_ever": {
"type": "object",
"properties": {
"price": {
"type": "number",
"description": "Lowest price ever recorded in USD"
},
"date": {
"type": "string",
"description": "ISO date (YYYY-MM-DD) of lowest price"
}
},
"required": [
"price",
"date"
]
},
"deals": {
"type": "array",
"items": {
"type": "object",
"properties": {
"store_id": {
"type": "string",
"description": "Store ID"
},
"deal_id": {
"type": "string",
"description": "Unique deal identifier"
},
"price": {
"type": "number",
"description": "Current price in USD"
},
"retail_price": {
"type": "number",
"description": "Retail/MSRP price in USD"
},
"savings_percent": {
"type": "number",
"description": "Discount percentage"
}
},
"required": [
"store_id",
"deal_id",
"price",
"retail_price",
"savings_percent"
]
}
}
},
"required": [
"game_id",
"name",
"steam_app_id",
"thumb",
"cheapest_price_ever",
"deals"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"gamedeals": {
"url": "https://gateway.pipeworx.io/gamedeals/mcp"
}
}
}
See Getting Started for client-specific install steps.