# Videogames Mcp Server

> Talk to your AI about games with up-to-date data. This MCP server connects Claude Desktop to a massive gaming database - search titles, get reviews, explore genres, all in your chat.

- **Type:** MCP server
- **Install:** `agentstack add mcp-barandev-videogames-mcp-server`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [BaranDev](https://agentstack.voostack.com/s/barandev)
- **Installs:** 0
- **Category:** [Databases](https://agentstack.voostack.com/c/databases)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [BaranDev](https://github.com/BaranDev)
- **Source:** https://github.com/BaranDev/videogames-mcp-server

## Install

```sh
agentstack add mcp-barandev-videogames-mcp-server
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# Video Games MCP Server

A fast, reliable Model Context Protocol (MCP) server that provides access to RAWG's detailed gaming database through Claude Desktop. Search for games, get detailed information, explore genres, and discover popular titles - all without leaving your chat interface.

## Why Use This?

Ever find yourself opening multiple browser tabs just to research a single game? This MCP server eliminates that hassle by bringing RAWG's entire gaming database directly into Claude Desktop. Whether you're trying to remember if "Cyberpunk 2077" is finally worth playing or need quick facts about indie games for your stream, just ask Claude and get instant, comprehensive answers.

## Features

- **Smart Game Search**: Find games by title with fuzzy matching that actually works
- **Comprehensive Game Details**: Ratings, platforms, developers, release dates, descriptions, and more
- **Genre Exploration**: Browse complete game categories without falling into rabbit holes  
- **Popular Games Discovery**: See what's trending without algorithm manipulation
- **Seamless Claude Integration**: Works directly in Claude Desktop - no app switching required
- **Fast & Reliable**: Built with FastMCP and async operations for speed

## Test Results (click the arrows to see the screenshots)

Basic Search Test: "Can you search for games with 'zelda' in the title and show me the top 5 results?"

  

*Tests: search_game_by_title tool with limit parameter - ✅ Passed*

Popular Games Test: "Show me the top 10 most popular games right now."

  

*Tests: get_popular_games tool with limit parameter - ✅ Passed*

Error Handling Test: "Look for popular games in a genre called 'NonExistentGenre'."

  

*Tests: Error handling for invalid genre names - ✅ Graceful error*

Multiplayer Games Test: "I'm planning a gaming night with friends. Can you recommend 2 popular multiplayer games?"

  

*Tests: Complex workflow combining search and analysis - ✅ Complex workflow*

Comprehensive Test Suite: Full 7-step MCP server validation

  
    
      
        
        Part 1: Steps 1-4
      
      
        
        Part 2: Steps 5-7
      
    
  

*Tests: All four MCP tools, error handling, and data analysis - ✅ All steps passed*

### 📊 Test Results Summary

| Test Category | Test Case | Status | Screenshot |
|---------------|-----------|---------|------------|
| **Basic Search** | Search for "zelda" games (top 5) | ✅ Passed | [1.png](Screenshots/1.png) |
| **Popular Games** | Get top 10 most popular games | ✅ Passed | [2.png](Screenshots/2.png) |
| **Error Handling** | Search for "NonExistentGenre" | ✅ Graceful error | [3.png](Screenshots/3.png) |
| **Multiplayer Query** | Find popular multiplayer games | ✅ Complex workflow | [4.png](Screenshots/4.png) |
| **Comprehensive Suite** | Full 7-step test sequence | ✅ All steps passed | [5.png](Screenshots/5.png), [5-1.png](Screenshots/5-1.png) |

*All tests return properly formatted game data with titles, ratings, platforms, and metadata.*

## Installation

### Prerequisites
- Python 3.11 or higher
- RAWG API Key (free at [rawg.io/apidocs](https://rawg.io/apidocs))
- Claude Desktop application

### Quick Setup

**1. Clone and Navigate**
```bash
git clone https://github.com/barandev/videogames-mcp-server.git
cd videogames-mcp-server
```

**2. Create Virtual Environment**
```bash
# With UV (recommended - faster)
uv venv
source .venv/bin/activate          # macOS/Linux
.\.venv\Scripts\Activate.ps1       # Windows PowerShell

# Or with standard Python
python -m venv .venv
# Then activate as above
```

**3. Install Dependencies**
```bash
pip install -r requirements.txt
```

**4. Configure API Access**
```bash
# Copy environment template
cp .env.example .env
# Edit .env and add your RAWG API key
```

💡 **Get your free API key at [rawg.io/apidocs](https://rawg.io/apidocs) - it's required for the server to function.**

**5. Verify Installation**
```bash
python main.py
```

## Claude Desktop Configuration

### Windows Configuration:
Add this to your `claude_desktop_config.json` file:

```json
{
  "mcpServers": {
    "videogames": {
      "command": "C:\\path\\to\\videogames-mcp-server\\.venv\\Scripts\\python.exe",
      "args": ["C:\\path\\to\\videogames-mcp-server\\main.py"],
      "cwd": "C:\\path\\to\\videogames-mcp-server",
      "env": {
        "RAWG_API_KEY": "your_api_key_here"
      }
    }
  }
}
```

### macOS/Linux Configuration:
```json
{
  "mcpServers": {
    "videogames": {
      "command": "/path/to/videogames-mcp-server/.venv/bin/python",
      "args": ["/path/to/videogames-mcp-server/main.py"],
      "cwd": "/path/to/videogames-mcp-server",
      "env": {
        "RAWG_API_KEY": "your_api_key_here"
      }
    }
  }
}
```

**Note:** Use absolute paths and restart Claude Desktop after making changes.

## Available Tools

### `search_game_by_title`
Search for games by title with fuzzy matching.
- **Parameters**: Game title, optional limit for results
- **Returns**: List of matching games with ratings, platforms, and screenshots

### `get_game_details`
Get comprehensive information about a specific game.
- **Parameters**: Game ID (from search results)
- **Returns**: Description, developers, publishers, release dates, ratings, platforms, ESRB info

### `list_genres`
List all available game genres.
- **Parameters**: None
- **Returns**: Complete list of genres with game counts

### `get_popular_games`
Discover trending and highly-rated games.
- **Parameters**: Optional limit, optional genre filter
- **Returns**: List of popular games with metadata

## License

MIT License - see [LICENSE](LICENSE) file for details.

## Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [BaranDev](https://github.com/BaranDev)
- **Source:** [BaranDev/videogames-mcp-server](https://github.com/BaranDev/videogames-mcp-server)
- **License:** MIT

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** yes
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/mcp-barandev-videogames-mcp-server
- Seller: https://agentstack.voostack.com/s/barandev
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
