Skip to content
VS Code

WPConvert MCP for VS Code

ai.wpconvert/mcp

Convert frontend folders to WordPress themes: quota, convert, status, download, preview, failures.

client:VS Code transport:stdio runtime:npm

Install WPConvert MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "wpconvert-api-key",
      "description": "WPCONVERT_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@wpconvert/mcp"
      ],
      "env": {
        "WPCONVERT_API_KEY": "${input:wpconvert-api-key}"
      }
    }
  }
}

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

WPConvert MCP in other clients