Confluence Wiki MCP Server Extension
A VSCode/Cursor extension providing an MCP Server for Confluence Wiki integration
Overview
Confluence Wiki MCP Server Extension is a VSCode/Cursor extension that provides an MCP Server for seamless integration with Confluence Wiki.
To use this extension, install it in your VSCode environment, and configure it to connect with your Confluence Wiki instance for enhanced functionality.
- Integration with Confluence Wiki for easy access to documentation. - Enhanced editing capabilities directly from VSCode. - Real-time updates and synchronization with Confluence.
- Editing Confluence pages directly from VSCode.
- Syncing documentation changes in real-time.
- Streamlining the workflow for developers and content creators.
Add to your AI client
Use these steps to connect Confluence Wiki MCP Server Extension in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"confluence-wiki-mcp-server-extension-windiechai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-confluence-wiki-mcp-server-extension-windiechai"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"confluence-wiki-mcp-server-extension-windiechai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-confluence-wiki-mcp-server-extension-windiechai"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"confluence-wiki-mcp-server-extension-windiechai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-confluence-wiki-mcp-server-extension-windiechai"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"confluence-wiki-mcp-server-extension-windiechai": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-confluence-wiki-mcp-server-extension-windiechai"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"confluence-wiki-mcp-server-extension-windiechai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-confluence-wiki-mcp-server-extension-windiechai"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"confluence-wiki-mcp-server-extension-windiechai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-confluence-wiki-mcp-server-extension-windiechai"
]
}
}
}FAQ
Is this extension free to use?
Yes! The Confluence Wiki MCP Server Extension is free to use for all users.
What versions of Confluence does it support?
The extension supports multiple versions of Confluence, but it's recommended to check the documentation for specific compatibility details.
Can I use this extension with other editors?
Currently, this extension is designed specifically for VSCode.