atlassian dc mcp confluence for VS Code
io.github.mrrefactoring/atlassian-dc-mcp-confluence
MCP server for Atlassian Confluence Data Center - access and manage content
client:VS Code
transport:stdio
runtime:npm
Install atlassian dc mcp confluence in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "atlassian-dc-mcp-config-file",
"description": "ATLASSIAN_DC_MCP_CONFIG_FILE",
"password": true
},
{
"type": "promptString",
"id": "confluence-host",
"description": "CONFLUENCE_HOST",
"password": true
},
{
"type": "promptString",
"id": "confluence-api-base-path",
"description": "CONFLUENCE_API_BASE_PATH",
"password": true
},
{
"type": "promptString",
"id": "confluence-api-token",
"description": "CONFLUENCE_API_TOKEN",
"password": true
}
],
"servers": {
"atlassian-dc-mcp-confluence": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"confluence-datacenter-mcp"
],
"env": {
"ATLASSIAN_DC_MCP_CONFIG_FILE": "${input:atlassian-dc-mcp-config-file}",
"CONFLUENCE_HOST": "${input:confluence-host}",
"CONFLUENCE_API_BASE_PATH": "${input:confluence-api-base-path}",
"CONFLUENCE_API_TOKEN": "${input:confluence-api-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs