CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Bielacki Igdb Mcp Server

bielacki/igdb-mcp-server
4authHTTPregistry active
Summary

Wraps the Internet Game Database API so Claude can search games, pull detailed metadata, and find trending titles without you writing API calls. You get four main tools: basic game search, detailed lookups by ID, most anticipated games by hype score, and custom Apicalypse queries for advanced filtering. Useful when you're building game recommendation features, need to enrich game data in your app, or want Claude to answer questions about releases, platforms, ratings, and developers. Requires Twitch developer credentials since IGDB uses Twitch OAuth. Handles token caching and refresh automatically, and the custom query tool lets you write raw Apicalypse if the pre-built search tools don't cover your use case.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

IGDB MCP Server

Access the IGDB (Internet Game Database) API through Model Context Protocol (MCP)

smithery badge Python MCP FastMCP uv License: MIT IGDB API

Overview

The IGDB MCP Server provides seamless access to the Internet Game Database (IGDB) through the Model Context Protocol. IGDB is a comprehensive database containing information about video games, including:

  • Game metadata (titles, descriptions, ratings)
  • Release dates and platforms
  • Developer and publisher information
  • Genres, themes, and game modes
  • User ratings and hype metrics
  • Cover art and media

Key Features

  • Full IGDB API Access: Search games, get detailed information, find trending titles
  • Smart Caching: OAuth tokens are cached to minimize authentication overhead
  • Flexible Queries: Use simple searches or advanced Apicalypse query language
  • Pre-built Prompts: Common queries ready to use
  • Type-Safe: Built with Pydantic for robust data validation

Quick Start

Get IGDB Credentials

  1. Create a Twitch account (if you don't have one)
  2. Go to Twitch Developer Console → Register Your Application
  3. Get your Client ID and generate a Client Secret

📖 Full IGDB authentication guide

Option A: install via Smithery

To install igdb-mcp-server automatically via Smithery:

npx -y @smithery/cli install @bielacki/igdb-mcp-server

Option B: install with uvx

Install uv.

Add this to your MCP client's configuration:

{
  "mcpServers": {
    "igdb-mcp": {
      "command": "uvx",
      "args": ["--from", "git+https://github.com/bielacki/igdb-mcp-server.git", "igdb-mcp-server"],
      "env": {
        "IGDB_CLIENT_ID": "your_client_id",
        "IGDB_CLIENT_SECRET": "your_secret"
      }
    }
  }
}

Start Exploring

Start exploring with these example prompts:

🔍 Search & Discovery

  • "Search for Elden Ring and its expansions"
  • "Find all Persona games from the last 5 years"
  • "Show me games similar to Hades"

📊 Game Information

  • "Get details about Baldur's Gate 3"
  • "Tell me everything about Cyberpunk 2077 including DLC"
  • "What platforms is Hogwarts Legacy available on?"

🔥 Trending & Popular

  • "What are the most anticipated upcoming games?"
  • "Show me the highest rated indie games of 2024"
  • "Find games with the most hype right now"

🎯 Advanced Queries

  • "Find games similar to Skyrim with a rating of 85 or higher"
  • "List all games by Larian Studios"
  • "Show upcoming Silent Hill and Resident Evil games"

Core Components

Tools

ToolDescriptionParametersExample Usage
search_gamesSearch for games by name• query (required): Search term
• fields: Fields to return (default: basic info)
• limit: Results count (1-500, default: 10)
"Search for Elden Ring games"
get_game_detailsGet comprehensive game information• game_id (required): IGDB game ID
• fields: Fields to return (default: extensive)
"Get details for game ID 1942"
get_most_anticipated_gamesFind upcoming games by hype• fields: Fields to return
• limit: Results count (1-500, default: 25)
• min_hypes: Min hype count (default: 25)
"Show most anticipated games"
custom_queryExecute Apicalypse queries• endpoint (required): API endpoint
• query (required): Apicalypse query string
"Find RPGs rated above 90"

Resources

ResourceDescriptionReturns
igdb://endpointsList of all IGDB API endpointsAvailable endpoints with descriptions
igdb://query-syntaxApicalypse query language guideSyntax reference and examples

Pre-built Prompts

PromptDescriptionUse Case
search_gameFormatted game search resultsQuick game discovery with clean output
game_detailsComprehensive game informationFull details including ratings, platforms, developers
most_anticipatedTrending upcoming gamesDiscover hyped unreleased games with statistics

Troubleshooting

Authentication Errors

  • "IGDB_CLIENT_ID not set": Check your MCP client config has the env variables
  • "Invalid credentials": Verify your Client ID and Secret are correct
  • "Token expired": The server handles token refresh automatically

Rate Limiting

IGDB allows 4 requests per second. The server doesn't implement rate limiting, so:

  • Avoid rapid repeated queries
  • Use field expansion instead of multiple requests
  • Leverage multi-query for batch operations

Common Query Issues

  • No results: Check spelling, try broader search terms
  • Missing fields: Some fields may be null; handle gracefully
  • Query syntax error: Verify Apicalypse syntax, check semicolons

Environment Variables

Ensure your MCP client config includes:

"env": {
  "IGDB_CLIENT_ID": "abc123...",
  "IGDB_CLIENT_SECRET": "xyz789..."
}

License & Credits

MIT License - see LICENSE file for details

Credits:

  • IGDB API by IGDB.com
  • MCP protocol by Anthropic
  • Built with FastMCP
  • Published on Smithery

For more information about IGDB API capabilities, visit the official IGDB API documentation.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
DatabasesDesign & CreativeSearch & Web CrawlingMedia & Entertainment
Registryactive
TransportHTTP
AuthRequired
UpdatedSep 29, 2025
View on GitHub

Related Databases MCP Servers

View all →
Postgres

ai.waystation/postgres

Connect to your PostgreSQL database to query data and schemas.
54
Read Only Local Postgres Mcp Server

hovecapital/read-only-local-postgres-mcp-server

MCP server for read-only PostgreSQL database queries in Claude Desktop
2
Database Mcp

cocaxcode/database-mcp

MCP server for database connectivity. Multi-DB (PostgreSQL, MySQL, SQLite), 19 tools.
1
Mcp Mysql

io.github.infoinlet-marketplace/mcp-mysql

Read-only MySQL/MariaDB for AI agents — query, list/describe tables, health. SQL-guarded.
Database Admin

io.github.cybeleri/database-admin

Database admin MCP: schema inspection, query optimization for PostgreSQL and MySQL
Postgres Secured (Aegis Zero-Trust)

io.github.yash-0620/postgres-mcp-secured

Enterprise PostgreSQL MCP secured by Aegis Zero-Trust to block unauthorized SQL injections.