Videogame Encyclopedia MCP Server

MCP server providing structured video game information from Steam and SteamGridDB

Local serverstdioTypeScript

What is the Videogame Encyclopedia MCP server?

Most developer tooling work still happens through a UI a human drives. Videogame Encyclopedia MCP server moves it into the conversation instead. MCP server providing structured video game information from Steam and SteamGridDB.

The short version

A Model Context Protocol (MCP) server that provides structured video game information from Steam and SteamGridDB. This server exposes tools for searching games and retrieving comprehensive metadata including descriptions, categories, release dates, player counts, and visual assets like logos, boxart, and icons.

Getting it running

@smithery/cli on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

The tools it exposes

The server publishes 4 tools. What each one is for:

  • game_get_full_profile — Get a comprehensive game profile in a single request, aggregating metadata from Steam and community visual assets from SteamGridDB. This is the
  • Prerequisites — The Prerequisites tool exposed by this server
  • Setup — 1. Clone or download this repository bash cd /Users/hoanicross/devel/perso/genai/mcp/game-encyclopedia-mcp-server
  • Scripts — The Scripts tool exposed by this server

What it needs from you

Configuration is passed through the environment: STEAMGRIDDB_API_KEY, SCREENSCRAPER_DEV_ID, SCREENSCRAPER_USER_ID. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

  • Node.js 18 or higher - npm or yarn

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Videogame Encyclopedia's toolset — game_get_full_profile, Prerequisites, Setup and 1 more — is a fair guide to whether it matches your workflow. It is maintained by hcross; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
game_get_full_profileGet a comprehensive game profile in a single request, aggregating metadata from Steam and community visual assets from SteamGridDB. This is the **recommended tool** for providing a complete overview of a game.
PrerequisitesThe Prerequisites tool exposed by this server.
Setup1. **Clone or download this repository** bash cd /Users/hoanicross/devel/perso/genai/mcp/game-encyclopedia-mcp-server
ScriptsThe Scripts tool exposed by this server.

How to install the Videogame Encyclopedia MCP server

{
  "mcpServers": {
    "videogame-encyclopedia": {
      "command": "npx",
      "args": ["-y", "@smithery/cli"],
      "env": {
        "STEAMGRIDDB_API_KEY": "your-value",
        "SCREENSCRAPER_DEV_ID": "your-value",
        "SCREENSCRAPER_USER_ID": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  • Node.js 18 or higher - npm or yarn
VariableDescriptionRequired
STEAMGRIDDB_API_KEYCredential the server authenticates with.Yes
SCREENSCRAPER_DEV_IDConfiguration value read at startup.Optional
SCREENSCRAPER_USER_IDConfiguration value read at startup.Optional

Example prompts to try

  • Use Videogame Encyclopedia to game get full profile.
  • Use Videogame Encyclopedia to Prerequisites.
  • Use Videogame Encyclopedia to Setup.

Frequently asked questions

It connects Videogame Encyclopedia to MCP-compatible AI assistants such as Claude and Cursor, exposing 4 tools (game_get_full_profile, Prerequisites, Setup, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Videogame Encyclopedia directly.