deal

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

Single deal detail.

Parameters

NameTypeRequiredDescription
idstringyes

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":"deal","arguments":{}}}'

Response shape

FieldTypeDescription
gameInfoobject
cheapestPriceEverobject
dealsarray
Full JSON Schema
{
  "type": "object",
  "properties": {
    "gameInfo": {
      "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.

Regenerated from source · build May 21, 2026