list_games
Pack: videogames · Endpoint: https://gateway.pipeworx.io/videogames/mcp
List free-to-play games from FreeToGame. Optionally filter by platform and category, and sort results. Returns title, short description, game URL, genre, platform, publisher, release date, and thumbnail.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
platform | string | no | Platform filter: “pc”, “browser”, or “all” (default “all”) |
category | string | no | Genre/category filter, e.g. “mmorpg”, “shooter”, “strategy”, “moba”, “racing”, “sports”, “social”, “sandbox”, “open-world”, “survival”, “pvp”, “pve”, “pixel”, “voxel”, “zombie”, “turn-based”, “first-person”, “third-person”, “top-down”, “tower-defense”, “horror”, “mmofps” |
sort_by | string | no | Sort order: “release-date”, “popularity”, “alphabetical”, or “relevance” |
Example call
Arguments
{
"platform": "pc",
"category": "shooter",
"sort_by": "popularity"
}
curl
curl -X POST https://gateway.pipeworx.io/videogames/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_games","arguments":{"platform":"pc","category":"shooter","sort_by":"popularity"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_games', {
"platform": "pc",
"category": "shooter",
"sort_by": "popularity"
});
More examples
{
"platform": "browser",
"category": "strategy"
}
Response shape
Always returns: total, games
| Field | Type | Description |
|---|---|---|
total | number | Total number of games returned |
games | array |
Full JSON Schema
{
"type": "object",
"properties": {
"total": {
"type": "number",
"description": "Total number of games returned"
},
"games": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Game ID"
},
"title": {
"type": "string",
"description": "Game title"
},
"short_description": {
"type": "string",
"description": "Brief game description"
},
"game_url": {
"type": "string",
"description": "URL to play the game"
},
"genre": {
"type": "string",
"description": "Game genre"
},
"platform": {
"type": "string",
"description": "Platform availability"
},
"publisher": {
"type": "string",
"description": "Game publisher name"
},
"release_date": {
"type": "string",
"description": "Game release date"
},
"thumbnail": {
"type": "string",
"description": "URL to game thumbnail image"
}
},
"required": [
"id",
"title",
"short_description",
"game_url",
"genre",
"platform",
"publisher",
"release_date",
"thumbnail"
]
}
}
},
"required": [
"total",
"games"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"videogames": {
"url": "https://gateway.pipeworx.io/videogames/mcp"
}
}
}
See Getting Started for client-specific install steps.