confluence

confluence is a skill for Claude Code, Codex from Stillfrozen/confluence-cursor-connector. It costs 60 tokens per session (770 once invoked), scanned B, original, MIT.

A read-only connector for Confluence Server or Data Center, wiki software used to store and search team documentation.

In plain words
What is it for?
Use it to search pages with CQL, list spaces, read page content, or resolve a page from its ID, space, title, or URL.
Why use it?
It lets an agent find and read wiki pages without editing them or needing to inspect the site manually.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/stillfrozen/confluence-cursor-connector/confluence
Any agent
npx skills add Stillfrozen/confluence-cursor-connector --skill confluence
Clone the repo
git clone --depth 1 https://github.com/Stillfrozen/confluence-cursor-connector

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for confluence

README.md
[![agentmods](https://agentmods.dev/badge/skills/stillfrozen/confluence-cursor-connector/confluence.svg)](https://agentmods.dev/skills/stillfrozen/confluence-cursor-connector/confluence)
Your own site
<a href="https://agentmods.dev/skills/stillfrozen/confluence-cursor-connector/confluence"><img src="https://agentmods.dev/badge/skills/stillfrozen/confluence-cursor-connector/confluence.svg" alt="Measured on agentmods" height="20"></a>
Per session 60 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 770 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00060 $0.00770
Opus 5 $0.00030 $0.00385
Sonnet 5 $0.00012 $0.00154
Haiku 4.5 $0.00006 $0.00077

Measured 5d ago against content hash d6d522b66b27, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade B, and why

confluence scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Reads MCP configurationmediumAgent snooping

mcp.json carries server URLs and auth tokens; reading it lets a mod discover and abuse other integrations.

`CONFLUENCE_BASE_URL` and `CONFLUENCE_PAT` live in `~/.cursor/mcp.json` → `mcpServers.confluence.env`. Never commit. Never echo the token.
skills/confluence/SKILL.md · 102 lines

How it starts

The opening of the file, as written. The whole thing — 102 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Confluence (Cursor MCP connector)

When to use

  • User asks to find or read a Confluence page, space, or wiki section.
  • User pastes a wiki URL or a numeric pageId.

Prefer MCP tools when the confluence server is connected.

This connector is read-only. Do not promise to create or edit pages.


Auth

CONFLUENCE_BASE_URL and CONFLUENCE_PAT live in ~/.cursor/mcp.jsonmcpServers.confluence.env. Never commit. Never echo the token.

Server / Data Center only. Confluence Cloud is out of scope.

{
  "mcpServers": {
    "confluence": {
      "command": "node",
      "args": ["/absolute/path/to/confluence-cursor-connector/dist/stdio-entry.js"],
      "env": {
        "CONFLUENCE_BASE_URL": "https://wiki.example.com",
        "CONFLUENCE_PAT": "…"
      }
    }
  }
}

After code changes: npm run build, then Reload MCP.


Tools

Tool Purpose
get-current-user Auth smoke test
list-spaces Spaces the PAT can see (limit 1–100)
search-pages CQL search; returns ids/titles/urls, not body
get-page Full page: page_id or space_key + exact title

How to resolve a page

  1. User gave a URL with pageId= or /pages/123get-page with page_id.
  2. User gave space key + title → get-page with both.
  3. User gave a topic → search-pages with CQL, then get-page on the best id.
  4. If several hits — list them, ask once.

CQL examples:

title~"onboarding" AND type=page
space = PRODUCT AND type = page
text ~ "лимиты" AND type = page

Reading bodyStorage

get-page returns Confluence storage HTML, not Markdown.

Before quoting or summarizing:

  1. Strip tags and ac: macros.
  2. Keep headings, lists, tables as structure.
  3. If a macro hid the real content (excerpt, include, unexpanded drawio) — say so and point the user to the URL from the tool result.

Do not invent page text that was not in bodyStorage.


Agent workflow

Read the full file on GitHub · 102 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 102 lines · 60 tokens per session scan B d6d522b66b27

Subscribe to this mod's changes

confluence is a skill published in the GitHub repository Stillfrozen/confluence-cursor-connector (0 stars, last pushed 15d ago), licensed MIT. It adds 60 tokens to every session and 770 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 1 finding (reads mcp configuration). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.