Skip to content
VS Code

wpgoldmine mcp for VS Code

io.github.bishop81/wpgoldmine-mcp

Find WordPress plugin opportunities: abandoned, low-rated, or poorly-supported plugins to replace.

client:VS Code transport:stdio runtime:npm

Install wpgoldmine mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "wpgoldmine-api-key",
      "description": "WPGOLDMINE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wpgoldmine-api-base",
      "description": "WPGOLDMINE_API_BASE",
      "password": true
    }
  ],
  "servers": {
    "wpgoldmine-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "wpgoldmine-mcp"
      ],
      "env": {
        "WPGOLDMINE_API_KEY": "${input:wpgoldmine-api-key}",
        "WPGOLDMINE_API_BASE": "${input:wpgoldmine-api-base}"
      }
    }
  }
}

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

wpgoldmine mcp in other clients