filter_games
Pack: videogames · Endpoint: https://gateway.pipeworx.io/videogames/mcp
Filter free-to-play games by tag (dot-separated combination of attributes). Returns matching games with title, short description, genre, platform, publisher, release date, and thumbnail.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
tag | string | yes | Dot-separated tag filter, e.g. “3d.mmorpg.fantasy”, “shooter.pvp”, “browser.strategy” |
platform | string | no | Optional platform filter: “pc” or “browser” |
Example call
Arguments
{
"tag": "3d.mmorpg.fantasy"
}
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":"filter_games","arguments":{"tag":"3d.mmorpg.fantasy"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('filter_games', {
"tag": "3d.mmorpg.fantasy"
});
More examples
{
"tag": "shooter.pvp",
"platform": "pc"
}
Response shape
Always returns: total, tag, games
| Field | Type | Description |
|---|---|---|
total | number | Total number of matching games |
tag | string | Filter tag applied |
games | array |
Full JSON Schema
{
"type": "object",
"properties": {
"total": {
"type": "number",
"description": "Total number of matching games"
},
"tag": {
"type": "string",
"description": "Filter tag applied"
},
"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",
"tag",
"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.