Game Deals

live Games

Search game deals and prices across Steam, GOG, Epic, and dozens of other stores via CheapShark

4 tools
0ms auth
free tier 50 calls/day

Tools

search_deals

Search for game deals with optional filters. Returns title, store, sale price, normal price, savings percentage, Metacritic score, and deal rating.

Parameters
Name Type Description
title opt string Filter deals by game title (partial match supported)
upper_price opt number Maximum price filter
lower_price opt number Minimum price filter
store_id opt string Filter by store ID (use list_stores to get IDs)
sort_by opt string Sort order: "Deal Rating" (default), "Price", "Metacritic", or "Reviews"
page_size opt number Number of results (default 10, max 60)
Try it
search_games required: query

Search for games by title. Returns each game with its cheapest current price and a deal ID to get more details.

Parameters
Name Type Description
query req string Game title to search for
limit opt number Maximum number of results (default 10)
Try it
get_game_details required: id

Get full price details for a game including price history, cheapest price ever recorded, and current deals across all stores.

Parameters
Name Type Description
id req string CheapShark game ID (obtained from search_games)
Try it
list_stores

List all game stores tracked by CheapShark. Returns store names and IDs for use with search_deals.

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/gamedeals/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/gamedeals/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_deals","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("search_deals", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("search game deals and prices across steam, gog, epic, and dozens of other stores via cheapshark");

Related packs

Other Pipeworx packs in the same categories (Games):