deals
Pack: cheapshark · Endpoint: https://gateway.pipeworx.io/cheapshark/mcp
Search deals across stores.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
storeID | string | no | Comma-sep store IDs. See stores(). |
pageNumber | number | no | |
pageSize | number | no | |
sortBy | string | no | DealRating | Title | Savings | Price | Metacritic | Reviews | Release | Store | Recent |
desc | boolean | no | |
lowerPrice | number | no | |
upperPrice | number | no | |
metacritic | number | no | |
steamRating | number | no | |
steamAppID | number | no | |
title | string | no | |
exact | boolean | no | |
AAA | boolean | no | |
steamworks | boolean | no | |
onSale | boolean | no |
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":"deals","arguments":{}}}'
Response shape
Full JSON Schema
{
"type": "array",
"items": {
"type": "object",
"properties": {
"dealID": {
"type": "string",
"description": "Unique deal identifier"
},
"gameID": {
"type": "string",
"description": "Game ID associated with deal"
},
"title": {
"type": "string",
"description": "Deal title"
},
"salePrice": {
"type": "string",
"description": "Current sale price"
},
"normalPrice": {
"type": "string",
"description": "Normal retail price"
},
"isOnSale": {
"type": "boolean",
"description": "Whether deal is currently on sale"
},
"savings": {
"type": "string",
"description": "Savings percentage"
},
"metacriticScore": {
"type": "string",
"description": "Metacritic score"
},
"steamRatingText": {
"type": "string",
"description": "Steam rating text"
},
"steamRatingPercent": {
"type": "string",
"description": "Steam rating percentage"
},
"releaseDate": {
"type": "number",
"description": "Unix timestamp of release date"
},
"lastChange": {
"type": "number",
"description": "Unix timestamp of last change"
},
"dealRating": {
"type": "string",
"description": "Deal rating score"
},
"thumb": {
"type": "string",
"description": "Thumbnail image URL"
},
"storeID": {
"type": "string",
"description": "Store identifier"
}
}
}
}
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.