Skip to content
VS Code

mcp metacritic for VS Code

io.github.smeet666/mcp-metacritic

Search Metacritic films, shows and games, read scores and critic reviews. No API key.

client:VS Code transport:stdio runtime:npm

Install mcp metacritic in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mc-user-agent",
      "description": "MC_USER_AGENT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mc-min-interval-ms",
      "description": "MC_MIN_INTERVAL_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mc-log-level",
      "description": "MC_LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "mcp-metacritic": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-metacritic"
      ],
      "env": {
        "MC_USER_AGENT": "${input:mc-user-agent}",
        "MC_MIN_INTERVAL_MS": "${input:mc-min-interval-ms}",
        "MC_LOG_LEVEL": "${input:mc-log-level}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

mcp metacritic in other clients