Metacritic MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Metacritic MCP ServerFind reviews for the latest Zelda game"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Metacritic MCP Server (MVP)
1 Goal
Build a Model Context Protocol (MCP) server that exposes Metacritic data (games, movies, TV shows and music) as first-class MCP tools and resources. The server will run locally and be started with a single command:
npx metacritic-mcp --port 3333 --locale enDisable cache:
npx metacritic-mcp --port 3333 --locale en --no-cacheMCP is an open JSON-RPC–based standard that lets LLM hosts (e.g. Claude Desktop) discover tools, resources and prompts declared by a server and invoke them with structured inputs.(modelcontextprotocol.info)
Related MCP server: mcphello-mcp-server
2 Scope
Component | Responsibilities |
Server bootstrap | TypeScript 5, Node 18, |
Metacritic adapter | Wrap the |
MCP façade | Implement:• |
In-memory cache (optional) | Simple |
Documentation | Auto-generated OpenAPI file and a concise README with curl examples. |
Observability, CI/CD, load testing and deployment tooling are out of scope for this MVP.
3 Functional Requirements
ID | Capability (exposed as MCP tool/resource) | Input → Output |
T-1 | Get game reviews with optional filters ( | GamesParamsOptions → GameReview[] |
T-2 | Get movie reviews with optional year filter | MoviesParamsOptions → MovieReview[] |
T-3 | Get TV reviews with optional filters ( | TVParamsOptions → TVReview[] |
T-4 | Get music reviews with optional filters ( | MusicParamsOptions → MusicReview[] |
R-1 | Resource for cached game reviews (read-only JSON) | → GameReview[] |
R-2 | Resource for cached movie reviews (read-only JSON) | → MovieReview[] |
R-3 | Resource for cached TV reviews (read-only JSON) | → TVReview[] |
R-4 | Resource for cached music reviews (read-only JSON) | → MusicReview[] |
H-1 | Lightweight ping returning | → {status: string, version: string} |
All tools must be described with JSON schemas in the tools/list response so that LLM hosts can validate parameters at call-time.(modelcontextprotocol.info)
4 High-level Architecture
graph TD
CLI["npx metacritic-mcp"] --> Server[JSON-RPC MCP Server]
Server --> Adapter[[Metacritic adapter]]
Adapter --> Metacritic[metacritic.com]
Server --> Cache[(TTL Map)]The server communicates with MCP hosts via stdio transport (default) or an optional WebSocket transport defined in the protocol’s transport layer.(modelcontextprotocol.info)
5 API Surface (JSON-RPC over MCP)
Method | Description |
| |
| |
| |
| |
|
6 Task Breakdown & Milestones
Step | ETA | Deliverable |
0 Confirm statement | T0 + 1 day | This document signed-off |
1 Project scaffold & CLI | T0 + 3 days |
|
2 Adapter for games | T0 + 6 days | Tool |
3 Extend adapter to movies/shows/music | T0 + 9 days | Category endpoints complete |
4 Implement resources tree | T0 + 11 days |
|
5 In-memory cache & scrape delay | T0 + 12 days | Config flags verified |
6 Docs & packaging | T0 + 14 days | Published npm package |
7 Acceptance Criteria
Installation:
npx metacritic-mcpboots the server with no additional setup.Correctness: All functional requirements (T-1 – T-4, R-1 – R-4, H-1) pass unit tests (≥70 % coverage).
Protocol compliance: Server declares
toolsandresourcescapabilities and answerstools/list/resources/listper MCP draft spec.Performance (local dev): First uncached call to
getGameReviews< 750 ms median on a 2020-era laptop.Docs: README shows CLI flags, example JSON-RPC calls and expected responses.
Reference • Model Context Protocol specification & quick-start guides for server developers (latest draft, Mar 2025).(modelcontextprotocol.info, modelcontextprotocol.info, modelcontextprotocol.info)
🚀 Quick Start
1. Installation & Build
# Clone the repository
git clone <your-repo-url>
cd mcp-metacritic-wrapper
# Install dependencies and build
npm install
npm run build
# Make server executable (required for Claude Desktop)
chmod +x dist/index.js2. Start the MCP Server
The server supports two transport modes:
Stdio Transport (for Claude Desktop)
# Default mode - for MCP hosts like Claude Desktop
npm start
# or (after build)
node dist/index.jsHTTP Transport (for testing/debugging)
# For manual testing and debugging
npm start -- --http --port 3333
# or (after build)
node dist/index.js --http --port 33333. Connect to Claude Desktop
Step 1: Configure Claude Desktop
Add the MCP server to your Claude Desktop configuration:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"metacritic": {
"command": "/Users/drwg/src/_exp/mcp-metacritic-wrapper/dist/index.js"
}
}
}Step 2: Restart Claude Desktop
Close and reopen Claude Desktop to load the new MCP server configuration.
Step 3: Verify Connection
You should see the Metacritic MCP server appear in Claude Desktop's MCP panel. If configured correctly, you'll have access to the getGameReviews tool.
4. Test the Tools
In Claude Desktop Chat:
Can you search for reviews of "Elden Ring" using the Metacritic tool?Manual Testing (HTTP mode):
# Test the tools/list endpoint
curl -X POST http://localhost:3333/ \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'
# Test the getGameReviews tool
curl -X POST http://localhost:3333/ \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"getGameReviews","arguments":{"searchTerm":"Elden Ring"}}}'Manual Testing (Stdio mode):
# Test via stdio transport
echo '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}' | node dist/index.js
# Test getGameReviews tool
echo '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"getGameReviews","arguments":{"searchTerm":"God of War"}}}' | node dist/index.js🛠️ Available Tools
getGameReviews
Search for game reviews with optional filters and search capabilities.
Parameters:
searchTerm(string, optional): Search for a specific game by namefilterBy(string, optional): Filter games by availabilitynew-releases|coming-soon|available
platform(string, optional): Filter by gaming platformps5|ps4|xbox-series-x|xbox-one|pc|nintendo-switch
sortBy(string, optional): Sort results by fielddate|metascore|name|userscore
Example Usage in Claude Desktop:
Search for "The Last of Us" game reviews
Find new PlayStation 5 game releases
Get reviews for PC games sorted by MetascoreExample Response:
**Elden Ring**
Metascore: 96/100
User Score: 85/100 (positive)
Elden Ring - A game with a Metascore of 96
More info: https://www.metacritic.com/game/elden-ring
---🔧 Configuration Options
CLI Flags
node dist/index.js [options]
# or
npm start -- [options]
Options:
-p, --port <port> Server port (HTTP mode) (default: 3333)
-l, --locale <locale> Locale for reviews (default: en)
--no-cache Disable caching
--stdio Use stdio transport (default)
--http Use HTTP transport
-h, --help Display help for commandEnvironment Variables
You can also configure via environment variables:
export MCP_PORT=3333
export MCP_LOCALE=en
export MCP_CACHE=true🧪 Development & Testing
Run Tests
# Run unit tests
npm test
# Run tests with coverage
npm run test-coverageDevelopment Mode
# Watch for changes and rebuild
npm run dev
# Start in HTTP mode for debugging
npm start -- --http --port 3333Debugging
Enable debug logging by setting the environment variable:
DEBUG=metacritic-mcp npm start📚 MCP Protocol Details
This server implements the Model Context Protocol (MCP) specification, providing:
Tools:
getGameReviewsfor searching and retrieving game review dataResources: Cached review data accessible via URI endpoints
Transport: Both stdio (for MCP hosts) and HTTP (for testing)
Capabilities: Tool listing, execution, and resource access
Supported MCP Methods
initialize- Server initialization and capability negotiationtools/list- List available tools with schemastools/call- Execute tools with parametersresources/list- List available resourcesresources/read- Read resource contentping/meta/ping- Health check endpoint
🤝 Contributing
Fork the repository
Create a feature branch:
git checkout -b feature/new-featureMake your changes and add tests
Ensure tests pass:
npm testBuild the project:
npm run buildCommit your changes:
git commit -m 'Add new feature'Push to the branch:
git push origin feature/new-featureSubmit a pull request
🐛 Troubleshooting
Common Issues
Claude Desktop doesn't show the MCP server:
Check the
claude_desktop_config.jsonfile path and syntaxEnsure the
cwdpath points to your project directoryRestart Claude Desktop after configuration changes
Check Claude Desktop's developer console for error messages
"Tool not found" errors:
Verify the server started successfully with
npm startCheck that the build completed without errors:
npm run buildTest the server manually:
echo '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}' | node dist/index.js
Network/API errors:
Check your internet connection
The Metacritic API may have rate limits or temporary availability issues
Try again after a short delay
Permission errors:
Ensure you have write permissions in the project directory
On macOS/Linux, you may need to make the server executable:
chmod +x dist/index.js
Debug Mode
Run with debug output to see detailed operation logs:
# Enable debug logging
DEBUG=* npm start
# Or for specific modules
DEBUG=metacritic-mcp* npm start📄 License
MIT License - see LICENSE file for details.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityDmaintenanceEnables LLMs to retrieve and analyze Steam game reviews, providing access to review statistics, game information, and helping summarize pros and cons of games.1147MIT
- Flicense-quality-maintenanceProvides access to a curated database of over 1,500 MCP tools with quality scores. Enables searching, browsing trending tools by category, discovering random tools, and retrieving detailed information about specific MCP tools.
- FlicenseAqualityDmaintenanceExposes two MCP tools (discover and execute) that enable agents to query an OpenAPI schema via natural language and execute matched API operations.2
- Alicense-qualityCmaintenanceEnables AI agents to query TV and movie metadata from Trakt, including details, trending, popular content, and watch tracking signals through MCP tools.19MIT
Related MCP Connectors
Live Google Maps business search, review, and photo data for AI agents over MCP.
TheGamesDB MCP — wraps TheGamesDB API (thegamesdb.net), a community
100+ MCP tools for AI agents: content metadata, trade intelligence, business-expertise analysis.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MrCherry/mcp-metacritic'
If you have feedback or need assistance with the MCP directory API, please join our Discord server