games
Pack: cheapshark · Endpoint: https://gateway.pipeworx.io/cheapshark/mcp
Game lookup.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
title | string | yes | |
limit | number | no | |
steamAppID | number | no | |
exact | 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":"games","arguments":{}}}'
Response shape
Full JSON Schema
{
"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"
}
}
}
}
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.