MCP Atlassian Confluence Server
A Model Context Protocol (MCP) server for Atlassian Confluence integration, forked from boilerplate-mcp-server
Overview
MCP Atlassian Confluence Server is a Model Context Protocol (MCP) server designed for integration with Atlassian Confluence, enabling AI assistants to access and interact with Confluence content.
To use the server, run the command npx -y aashari/mcp-atlassian-confluence to start the MCP server. Configure it with AI clients like Claude Desktop or Cursor AI by updating their respective settings with the MCP server details.
- Integration with Atlassian Confluence via the Model Context Protocol. - Compatibility with AI assistants like Claude Desktop and Cursor AI. - Ability to fetch and display Confluence content through AI tools.
- Enabling AI assistants to retrieve information from Confluence pages.
- Automating content management tasks within Confluence using AI.
- Enhancing user interaction with Confluence through AI-driven queries.
Add to your AI client
Use these steps to connect MCP Atlassian Confluence Server 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": {
"mcp-atlassian-confluence-aashari": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-atlassian-confluence-aashari"
]
}
}
}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": {
"mcp-atlassian-confluence-aashari": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-atlassian-confluence-aashari"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-atlassian-confluence-aashari": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-atlassian-confluence-aashari"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-atlassian-confluence-aashari": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-atlassian-confluence-aashari"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-atlassian-confluence-aashari": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-atlassian-confluence-aashari"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-atlassian-confluence-aashari": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-atlassian-confluence-aashari"
]
}
}
}FAQ
**What is the Model Context Protocol (MCP)?**
MCP is a protocol that allows AI systems to interact with various content management systems, including Atlassian Confluence.
**Is there a cost to use this server?**
No, the MCP Atlassian Confluence Server is open-source and free to use.
**What are the prerequisites for running this server?**
You need Node.js (v22.14.0 or higher) and access to an Atlassian Confluence instance with API credentials.