RAWG

live DataEntertainment

RAWG MCP — wraps the RAWG video games database API (rawg.io)

4 tools
0ms auth
free tier 50 calls/day

Tools

search_games

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:

No parameters required.

Try it
get_game

Get full details for a single video game: description, ratings, Metacritic score, platforms, genres, developers, publishers, ESRB rating, and playtime. Example: get_game({ id: "the-witcher-3-wild-hunt

No parameters required.

Try it
list_genres

List all video game genres in the RAWG database, with game counts per genre (e.g. Action, RPG, Indie, Strategy).

No parameters required.

Try it
list_platforms

List all gaming platforms in the RAWG database, with game counts per platform (e.g. PC, PlayStation 5, Xbox Series X, Nintendo Switch).

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/rawg/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/rawg/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_games","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("search_games", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("rawg mcp — wraps the rawg video games database api (rawg");