Skip to content
VS Code

mcp rule34 for VS Code

io.github.smeet666/mcp-rule34

Search rule34.xxx posts by tag through the site's own API. Needs a rule34.xxx API key.

client:VS Code transport:stdio runtime:npm

Install mcp rule34 in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "rule34-user-id",
      "description": "RULE34_USER_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "rule34-api-key",
      "description": "RULE34_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "rule34-min-interval-ms",
      "description": "RULE34_MIN_INTERVAL_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "rule34-log-level",
      "description": "RULE34_LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "mcp-rule34": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-rule34"
      ],
      "env": {
        "RULE34_USER_ID": "${input:rule34-user-id}",
        "RULE34_API_KEY": "${input:rule34-api-key}",
        "RULE34_MIN_INTERVAL_MS": "${input:rule34-min-interval-ms}",
        "RULE34_LOG_LEVEL": "${input:rule34-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 rule34 in other clients