Node.js/TypeScript MCP server for Atlassian Confluence. Provides tools enabling AI systems (LLMs) to list/get spaces & pages (content formatted as
Atlassian Confluence MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. Node.js/TypeScript MCP server for Atlassian Confluence. Provides tools enabling AI systems (LLMs) to list/get spaces & pages (content formatted as Markdown) and search via CQL. Connects AI seamlessly to Confluence knowledge bases using the.
Transform how you access and interact with your team's knowledge by connecting Claude, Cursor AI, and other AI assistants directly to your Confluence spaces, pages, and documentation. Get instant answers from your knowledge base, search across all your spaces, and streamline your documentation workflow.
The server ships on npm as @aashari/mcp-server-atlassian-confluence, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.
Once Atlassian Confluence is connected, these are the calls the assistant has available:
get — GET any Confluence endpointpost — POST to any endpointput — PUT to any endpointpatch — PATCH any endpointdelete — DELETE from any endpointconf_get — GET any Confluence API endpoint (read data)conf_post — POST to any endpoint (create resources)conf_put — PUT to any endpoint (replace resources)conf_patch — PATCH to any endpoint (partial updates)conf_delete — DELETE from any endpoint (remove resources)Examples — The Examples tool exposed by this serverRequirements — The Requirements tool exposed by this serverYou will need 4 environment variables: ATLASSIAN_SITE_NAME, ATLASSIAN_USER_EMAIL, ATLASSIAN_API_TOKEN, DEBUG. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
registerTool API) - Confluence: Cloud only (Server/Data Center not supported)Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Atlassian Confluence's toolset — get, post, put and 11 more — is a fair guide to whether it matches your workflow. It is maintained by aashari; worth a glance at recent repository activity before you build anything load-bearing on it.
We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.
| Tool | What it does |
|---|---|
| get | GET any Confluence endpoint |
| post | POST to any endpoint |
| put | PUT to any endpoint |
| patch | PATCH any endpoint |
| delete | DELETE from any endpoint |
| conf_get | GET any Confluence API endpoint (read data) |
| conf_post | POST to any endpoint (create resources) |
| conf_put | PUT to any endpoint (replace resources) |
| conf_patch | PATCH to any endpoint (partial updates) |
| conf_delete | DELETE from any endpoint (remove resources) |
| Examples | The Examples tool exposed by this server. |
| Requirements | The Requirements tool exposed by this server. |
| Architecture | 1. **Tools Layer** (src/tools/) - MCP tool definitions with Zod validation 2. **CLI Layer** (src/cli/) - Commander-based CLI for direct testing 3. **Controllers Layer** (src/controllers/) - Business logic, JMESPath filte |
| Features | The Features tool exposed by this server. |
{
"mcpServers": {
"server-atlassian-confluence": {
"command": "npx",
"args": ["-y", "@aashari/mcp-server-atlassian-confluence"],
"env": {
"ATLASSIAN_SITE_NAME": "your-value",
"ATLASSIAN_USER_EMAIL": "your-value",
"ATLASSIAN_API_TOKEN": "your-value",
"DEBUG": "your-value"
}
}
}
}Add to claude_desktop_config.json, then restart Claude Desktop.
registerTool API) - Confluence: Cloud only (Server/Data Center not supported)| Variable | Description | Required |
|---|---|---|
| ATLASSIAN_SITE_NAME | Configuration value read at startup. | Optional |
| ATLASSIAN_USER_EMAIL | Configuration value read at startup. | Optional |
| ATLASSIAN_API_TOKEN | Credential the server authenticates with. | Yes |
| DEBUG | Configuration value read at startup. | Optional |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.