Skip to content
VS Code

Respira WordPress MCP for VS Code

io.github.webmyc/respira-wordpress

AI-native WordPress editing across 17 page builders. 233 tools, 337 with WooCommerce. Safe writes.

client:VS Code transport:stdio runtime:npm

Install Respira WordPress MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "wordpress-url",
      "description": "WORDPRESS_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wordpress-api-key",
      "description": "WORDPRESS_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "respira-config-b64",
      "description": "RESPIRA_CONFIG_B64",
      "password": true
    },
    {
      "type": "promptString",
      "id": "respira-config-file",
      "description": "RESPIRA_CONFIG_FILE",
      "password": true
    }
  ],
  "servers": {
    "respira-wordpress": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@respira/wordpress-mcp-server"
      ],
      "env": {
        "WORDPRESS_URL": "${input:wordpress-url}",
        "WORDPRESS_API_KEY": "${input:wordpress-api-key}",
        "RESPIRA_CONFIG_B64": "${input:respira-config-b64}",
        "RESPIRA_CONFIG_FILE": "${input:respira-config-file}"
      }
    }
  }
}

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

Respira WordPress MCP in other clients