confluence-http-api-mcp
Allows AI agents to read project documentation from Confluence, including searching pages, fetching content by ID or title, listing spaces, and navigating page trees.
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-http-api-mcpsearch for pages about API design in the DEV 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-http-api-mcp
Read-only MCP server for self-hosted Confluence (Server / Data Center) over the REST API.
Primary use case: let an AI agent read project documentation — search pages, fetch content, navigate page trees.
Requirements
Node.js 18+
Confluence base URL and a Personal Access Token with read access to the relevant spaces
Related MCP server: jira-mcp-server
Configuration
Variable | Required | Description |
| Yes | Base URL, e.g. |
| Yes | PAT sent as |
Alias: CONFLUENCE_PAT.
Tools (read-only)
Tool | Purpose |
| CQL search ( |
| Page by content id + plain-text body |
| Page by space key + exact title |
| Discover spaces |
| Child pages (doc tree / TOC) |
Page bodies are returned as plain text (HTML/storage markup stripped) for easier agent consumption.
Install
From source (GitLab / GitHub)
git clone git@gitlab.greenworm.ru:ai/confluence-http-api-mcp.git
cd confluence-http-api-mcp
npm installПубличное зеркало: https://github.com/rkorablin/confluence-http-api-mcp.
From npm
npm install confluence-http-api-mcpOr globally (for npx / CLI usage):
npm install -g confluence-http-api-mcpUsage
Standalone (stdio)
export CONFLUENCE_URL="https://wiki.it-aces.com"
export CONFLUENCE_TOKEN="..."
node server.mjsCursor / MCP host
Add the server to your MCP config (for example .cursor/mcp.json → mcpServers).
Option 1: Local clone
"confluence": {
"command": "node",
"args": ["/absolute/path/to/confluence-http-api-mcp/server.mjs"],
"env": {
"CONFLUENCE_URL": "https://wiki.it-aces.com",
"CONFLUENCE_TOKEN": "..."
}
}Option 2: npm / npx
If installed globally:
"confluence": {
"command": "confluence-http-api-mcp",
"env": {
"CONFLUENCE_URL": "https://wiki.it-aces.com",
"CONFLUENCE_TOKEN": "..."
}
}Or via npx (рекомендуется для автоподтягивания новых версий):
"confluence": {
"command": "npx",
"args": ["--yes", "--prefer-online", "confluence-http-api-mcp@latest"],
"env": {
"CONFLUENCE_URL": "https://wiki.it-aces.com",
"CONFLUENCE_TOKEN": "..."
}
}Or via wrapper + secrets file (see ~/.config/ai-mcp pattern used for GitLab/YouTrack).
Typical agent workflow
confluence_list_spaces— find space key (e.g.GAR)confluence_searchwithspace=GAR AND title ~ "Architecture"confluence_get_page— read full page textconfluence_get_page_children— walk documentation hierarchy
License
MIT
This server cannot be installed
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-qualityDmaintenanceA read-only MCP server that enables querying and searching Atlassian Confluence pages and Jira issues through their REST APIs. Supports retrieving content by ID or URL, searching using CQL/JQL, and listing spaces and projects.Last updated1MIT
- Alicense-qualityBmaintenanceA read-only MCP server that provides AI agents structured access to Jira Cloud, enabling project listing, sprint overview, issue retrieval, and JQL search.Last updated85MIT
- Flicense-qualityDmaintenanceAn MCP server that enables AI agents to read Confluence page content by URL, supporting self-hosted Confluence with basic auth.Last updated
- Alicense-qualityBmaintenanceMCP server for reading Confluence Server/DC documents with search, page content, metadata, spaces, page tree, and attachment/image support.Last updated285MIT
Related MCP Connectors
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
Search your AI chat history (ChatGPT, Claude, Codex) from any MCP client. Remote, private, read-only
Self-hosted MCP gateway: turn any API, database or MCP server into AI connectors — no code.
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/rkorablin/confluence-http-api-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server