search_games
Pack: gamedeals · Endpoint: https://gateway.pipeworx.io/gamedeals/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/search_games for the schema, then POST the same URL with its arguments for the data.
Find games by title to compare current prices across stores. Returns cheapest price, deal ID, and availability info for price tracking.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Game title to search for |
limit | number | no | Maximum number of results to return (default: 10) |
Example call
Arguments
{
"query": "Baldur's Gate 3"
}
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":"search_games","arguments":{"query":"Baldur'\''s Gate 3"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('search_games', {
"query": "Baldur's Gate 3"
});
More examples
{
"query": "Cyberpunk 2077",
"limit": 5
}
Response shape
Always returns: total, games
| Field | Type | Description |
|---|---|---|
total | number | Total number of games returned |
games | array |
Full JSON Schema
{
"type": "object",
"properties": {
"total": {
"type": "number",
"description": "Total number of games returned"
},
"games": {
"type": "array",
"items": {
"type": "object",
"properties": {
"game_id": {
"type": "string",
"description": "CheapShark game ID"
},
"title": {
"type": "string",
"description": "Game title"
},
"cheapest_price": {
"type": "number",
"description": "Lowest current price across all stores in USD"
},
"cheapest_deal_id": {
"type": "string",
"description": "Deal ID for the cheapest price offer"
},
"thumb": {
"type": "string",
"description": "Thumbnail image URL"
}
},
"required": [
"game_id",
"title",
"cheapest_price",
"cheapest_deal_id",
"thumb"
]
}
}
},
"required": [
"total",
"games"
]
}
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.