Skip to content
VS Code

Confluence Cloud for VS Code

io.github.aaronsb/confluence-cloud

MCP server for Confluence Cloud — page editing, navigation, and content management

client:VS Code transport:stdio runtime:npm

Install Confluence Cloud in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "confluence-api-token",
      "description": "CONFLUENCE_API_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "confluence-email",
      "description": "CONFLUENCE_EMAIL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "confluence-host",
      "description": "CONFLUENCE_HOST",
      "password": true
    }
  ],
  "servers": {
    "confluence-cloud": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@aaronsb/confluence-cloud-mcp"
      ],
      "env": {
        "CONFLUENCE_API_TOKEN": "${input:confluence-api-token}",
        "CONFLUENCE_EMAIL": "${input:confluence-email}",
        "CONFLUENCE_HOST": "${input:confluence-host}"
      }
    }
  }
}

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

Confluence Cloud in other clients