games

Pack: cheapshark · Endpoint: https://gateway.pipeworx.io/cheapshark/mcp

Look up a PC game by title (or steamAppID) across CheapShark’s catalog; returns the game’s cheapest current deal, cheapest historical price, and list of active deal IDs across stores.

Parameters

NameTypeRequiredDescription
titlestringyes
limitnumberno
steamAppIDnumberno
exactbooleanno

Example call

Arguments

{
  "title": "The Witcher 3"
}

curl

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":"games","arguments":{"title":"The Witcher 3"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('games', {
  "title": "The Witcher 3"
});

More examples

{
  "title": "Cyberpunk 2077",
  "exact": true,
  "limit": 5
}

Response shape

Always returns: items, count

FieldTypeDescription
itemsarray
countintegerNumber of items returned.
Full JSON Schema
{
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "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"
          }
        }
      }
    },
    "count": {
      "type": "integer",
      "description": "Number of items returned."
    }
  },
  "required": [
    "items",
    "count"
  ]
}

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.

Regenerated from source · build July 6, 2026