game
Pack: cheapshark · Endpoint: https://gateway.pipeworx.io/cheapshark/mcp
Game details.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes |
Example call
curl -X POST https://gateway.pipeworx.io/cheapshark/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"game","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
gameID | string | Game identifier |
title | string | Game title |
steamAppID | string | null | Steam app ID if available |
thumb | string | Game thumbnail URL |
cheapestPriceEver | object | |
deals | array |
Full JSON Schema
{
"type": "object",
"properties": {
"gameID": {
"type": "string",
"description": "Game identifier"
},
"title": {
"type": "string",
"description": "Game title"
},
"steamAppID": {
"type": [
"string",
"null"
],
"description": "Steam app ID if available"
},
"thumb": {
"type": "string",
"description": "Game thumbnail URL"
},
"cheapestPriceEver": {
"type": "object",
"properties": {
"price": {
"type": "string",
"description": "Cheapest price ever recorded"
},
"date": {
"type": "number",
"description": "Unix timestamp of cheapest price"
}
}
},
"deals": {
"type": "array",
"items": {
"type": "object",
"properties": {
"storeID": {
"type": "string",
"description": "Store identifier"
},
"storeIcon": {
"type": "string",
"description": "Store icon URL"
},
"dealID": {
"type": "string",
"description": "Deal identifier"
},
"price": {
"type": "string",
"description": "Current deal price"
},
"normalPrice": {
"type": "string",
"description": "Normal price"
},
"isOnSale": {
"type": "boolean",
"description": "Whether on sale"
},
"savings": {
"type": "string",
"description": "Savings percentage"
},
"lastChange": {
"type": "number",
"description": "Unix timestamp of last change"
},
"dealRating": {
"type": "string",
"description": "Deal rating"
},
"url": {
"type": "string",
"description": "Deal URL"
}
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"cheapshark": {
"url": "https://gateway.pipeworx.io/cheapshark/mcp"
}
}
}
See Getting Started for client-specific install steps.