Skip to main content
Glama
brandikun

opencritic-mcp

by brandikun

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
RAPIDAPI_KEYYesYour RapidAPI key for the OpenCritic API

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
search_gameA

Search for a game by name on OpenCritic. Returns up to 10 matches with their IDs, which can be passed to get_game or get_game_reviews.

get_gameA

Get full details and critic scores for a game by its OpenCritic ID. Includes critic score, % recommended, tier, developer, publisher, platforms, genres, loot box status, and box art. Optionally filter by platform name (e.g. 'PC', 'PS5', 'Xbox').

get_game_reviewsA

Get individual critic reviews for a game by its OpenCritic ID. Returns reviews including outlet, score, author, language, platforms, excerpt, and a link to the full review. Optionally filter by platform name (e.g. 'PC', 'PS5').

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.5/5.0

Scored across 3 tools

Disambiguation5/5

Each tool has a distinct purpose: search_game finds games by name, get_game retrieves full details for a specific game, and get_game_reviews fetches individual critic reviews. There is no overlap in functionality, and the descriptions clearly indicate when to use each.

Naming Consistency5/5

All tool names follow the same verb_noun pattern with lowercase snake_case: get_game, search_game, get_game_reviews. The pattern is consistent and predictable, making it easy to guess the function of each tool.

Tool Count5/5

With only three tools, the server is well-scoped for its purpose of accessing OpenCritic data. Each tool covers a necessary step in the workflow (search, details, reviews), and no redundant or superfluous tools are present.

Completeness5/5

The toolset provides a complete read-only workflow: search to find a game, then retrieve either its full details or its individual reviews. There are no obvious gaps, and the filter options add flexibility for platform-specific queries.

Maintenance

ActivitySlowing
ResponsivenessNo issues