Skip to content
VS Code

modrinth mcp for VS Code

io.github.justinscott12/modrinth-mcp

Search Modrinth and publish Minecraft mods (create projects, upload versions) via the Modrinth API.

client:VS Code transport:stdio runtime:npm

Install modrinth mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "modrinth-token",
      "description": "MODRINTH_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "modrinth-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@justinscott12/modrinth-mcp"
      ],
      "env": {
        "MODRINTH_TOKEN": "${input:modrinth-token}"
      }
    }
  }
}

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

modrinth mcp in other clients