confluence-mcp
Provides tools for interacting with Confluence, enabling page lookup, CQL search, page creation/update, comments, and space discovery.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@confluence-mcpsearch for pages about API authentication in the DevOps space"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
confluence-mcp
A local MCP server for Confluence (Data Center/Server compatible) with token-based auth.
This server exposes a compact set of tools for page lookup, CQL search, page creation/updates, comments, and space discovery.
What this server provides
confluence_get_page— get a page by ID, or by spaceKey + titleconfluence_search— search content with CQLconfluence_create_page— create a pageconfluence_update_page— update a page's title/body (auto-increments version)confluence_add_comment— add a comment to a pageconfluence_list_spaces— list spaces (useful to discover space keys)
Related MCP server: inhouse_confluence_mcp
Requirements
Node.js
>=20Confluence account with API access
Space/page permissions matching your actions (create, update, comment, etc.)
Configuration
Set environment variables (for example in .env):
# Required
CONFLUENCE_BASE_URL=https://your-confluence-host
# Optional (defaults shown)
CONFLUENCE_AUTH_TYPE=bearer
CONFLUENCE_DEFAULT_SPACE_KEY=
# For bearer auth (Data Center/Server personal access token)
CONFLUENCE_PAT=
# For basic auth (Confluence Cloud email + API token)
CONFLUENCE_EMAIL=
CONFLUENCE_API_TOKEN=Auth modes
CONFLUENCE_AUTH_TYPE=bearer(default)Requires
CONFLUENCE_PAT(Data Center/Server personal access token)
CONFLUENCE_AUTH_TYPE=basicRequires
CONFLUENCE_EMAIL+CONFLUENCE_API_TOKEN
Page and comment bodies use Confluence storage format (XHTML-based), for example <p>Hello world</p>.
Install and run
npm install
npm run build
npm startDevelopment mode:
npm run devSmoke test:
npm run test:confluenceMCP client config example
{
"mcpServers": {
"confluence": {
"command": "node",
"args": ["/absolute/path/to/confluence-mcp/dist/index.js"],
"env": {
"CONFLUENCE_BASE_URL": "https://confluence.your-company.local",
"CONFLUENCE_AUTH_TYPE": "bearer",
"CONFLUENCE_PAT": "your-personal-access-token",
"CONFLUENCE_DEFAULT_SPACE_KEY": "YOUR_SPACE_KEY"
}
}
}
}Tool inputs
confluence_get_page
By ID:
{ "pageId": "123456" }By space + title:
{ "spaceKey": "YOUR_SPACE_KEY", "title": "Sprint Planning Notes" }confluence_search
Input:
{
"cql": "space = YOUR_SPACE_KEY AND type = page ORDER BY lastmodified DESC",
"start": 0,
"limit": 20
}confluence_create_page
Required fields:
titlebody(storage format)
Optional fields:
spaceKey(falls back toCONFLUENCE_DEFAULT_SPACE_KEY)parentId(create as a child page)
Example input:
{
"title": "[MCP] Example page",
"body": "<p>Created from confluence-mcp</p>",
"parentId": "123456"
}confluence_update_page
Provide at least one of title or body. The current version is fetched automatically and incremented.
{
"pageId": "123456",
"body": "<p>Updated content</p>"
}confluence_add_comment
Input:
{
"pageId": "123456",
"comment": "<p>Investigation started</p>"
}confluence_list_spaces
Input:
{ "limit": 25 }Troubleshooting
Update fails with version conflict (409)
Another edit happened concurrently. Re-fetch the page (
confluence_get_page) and retry.
Create page fails with space permission errors (403)
These are Confluence permission-scheme restrictions for your user/token, not MCP runtime errors.
CQL search returns no results
Confirm the space key casing and that
type = page(ortype = comment, etc.) matches what you expect.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceEnables integration with Atlassian Confluence to browse spaces, search content using CQL, and manage pages directly from MCP-compatible applications. It automatically converts Confluence storage formats into markdown for seamless interaction with AI-driven editors and tools.822MIT
- Flicense-qualityDmaintenanceAn MCP server implementation for interacting with self-hosted Confluence Data Center or Server instances via search, content retrieval, and optional write operations. It features space auto-discovery, audit logging, and granular access control for secure enterprise collaboration.
- AlicenseAqualityCmaintenanceMCP server for Confluence Cloud/Server/Data Center, enabling page search, CQL queries, page CRUD, attachment upload, and user identity lookup.233794MIT
- Alicense-qualityCmaintenanceMCP server for searching and retrieving pages from Atlassian Confluence.411MIT
Related MCP Connectors
Confluence MCP — wraps the Confluence Cloud REST API v2 (OAuth)
Connect to Atlassian Jira, Confluence, and Compass to search, create, and manage your work.
Search, document and execute authenticated API calls across 500+ apps via one MCP server
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/YOSSTM/confluence-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server