Confluence Http Api Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Confluence Http Api Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
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.
| Variable | Required | Description |
|---|---|---|
CONFLUENCE_URL | Yes | Base URL, e.g. https://wiki.it-aces.com |
CONFLUENCE_TOKEN | Yes | PAT sent as Authorization: Bearer … |
Alias: CONFLUENCE_PAT.
| Tool | Purpose |
|---|---|
confluence_search | CQL search (space=GAR AND type=page, text ~ "API") |
confluence_get_page | Page by content id + plain-text body |
confluence_get_page_by_title | Page by space key + exact title |
confluence_list_spaces | Discover spaces |
confluence_get_page_children | Child pages (doc tree / TOC) |
Page bodies are returned as plain text (HTML/storage markup stripped) for easier agent consumption.
git clone [email protected]:ai/confluence-http-api-mcp.git
cd confluence-http-api-mcp
npm installПубличное зеркало: https://github.com/rkorablin/confluence-http-api-mcp.
npm install confluence-http-api-mcpOr globally (for npx / CLI usage):
npm install -g confluence-http-api-mcpexport CONFLUENCE_URL="https://wiki.it-aces.com"
export CONFLUENCE_TOKEN="..."
node server.mjsAdd 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).
confluence_list_spaces — find space key (e.g. GAR)confluence_search with space=GAR AND title ~ "Architecture"confluence_get_page — read full page textconfluence_get_page_children — walk documentation hierarchyMIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.