MCP server exposing 4 tools for igdb.
This URL is a JSON-RPC 2.0 endpoint over HTTP. Issue POST requests with a JSON-RPC body. Browsers and search crawlers land here on GET.
POST https://gateway.pipeworx.io/igdb/mcp
Content-Type: application/json
{"jsonrpc":"2.0","id":1,"method":"tools/list"}
igdb_search_games — Search the Internet Game Database (IGDB) for video games by title and get back real catalogue records: release date, summary, genres, themes, platforms, game modes, critic and user ratings, developer, publisher and cover art. Optionally restrict to one platform or to games released after a date. AUTHORITATIVE for video-game metadata — the same catalogue Twitch categorises streams against. Example: igdb_search_games({ query: "Breath of the Wild", limit: 5 }).igdb_game — One video game in full from IGDB, by numeric id or slug: summary and storyline, per-platform release dates and regions, genres, themes, game modes, player perspectives, franchise, developer and publisher, critic and user ratings, DLC, expansions, similar games and cover art. Use after igdb_search_games. Example: igdb_game({ slug: "the-legend-of-zelda-breath-of-the-wild" }).igdb_companies — Find video-game companies in IGDB by name — developers, publishers, studios — with country, founding date, description, logo, and how many games each developed and published, with a sample of titles. Answers "who made this" and "what else has this studio shipped". Example: igdb_companies({ query: "Nintendo" }).igdb_platforms — List or search the ~200 gaming platforms IGDB tracks — consoles, handhelds, computers, arcade systems and digital storefronts — with abbreviation, hardware generation and platform family. Its ids are what igdb_search_games({ platform_id }) filters on. Example: igdb_platforms({ query: "PlayStation" }).Code samples (curl / TypeScript / one-click client install), schemas, and the live playground are on the pack page:
https://pipeworx.io/packs/igdb/
Pipeworx is an open MCP gateway connecting AI agents to live data. pipeworx.io