search_games

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

Search the RAWG video game database by name, genre, or platform. Returns games with ratings, Metacritic scores, release dates, platforms, and genres. Example: search_games({ query: “zelda”, ordering: “-metacritic” })

Parameters

NameTypeRequiredDescription
querystringnoSearch query — a game name or keyword, e.g. “elden ring”, “mario”
genresstringnoFilter by genre slug(s) or id(s), comma-separated, e.g. “action”, “role-playing-games-rpg”
platformsstringnoFilter by platform id(s), comma-separated, e.g. “4” (PC), “187” (PS5)
orderingstringnoSort order, e.g. “-rating” (top rated), “-released” (newest), “-metacritic” (best reviewed)
page_sizenumbernoNumber of games to return (default 20, max 40)
_apiKeystringnoOptional — your own RAWG API key for higher limits; omit to use the shared Pipeworx key.

Example call

Arguments

{
  "query": "zelda"
}

curl

curl -X POST https://gateway.pipeworx.io/rawg/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_games","arguments":{"query":"zelda"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('search_games', {
  "query": "zelda"
});

More examples

{
  "query": "elden ring",
  "ordering": "-metacritic",
  "platforms": "7",
  "page_size": 10
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "rawg": {
      "url": "https://gateway.pipeworx.io/rawg/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 2, 2026