Confluence MCP Server

MCP stdio server for fetching Confluence Wiki pages with managed browser authentication.

Local serverstdio

What is the Confluence MCP server?

MCP stdio server for fetching Confluence Wiki pages with managed browser authentication. Exposed over MCP by the confluence mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

面向 macOS 的 Confluence Wiki 内容获取 MCP 服务器,通过托管 Chrome Profile 自动管理认证,无需手动配置 Cookie。

Its toolset

Everything the assistant can do here goes through one of these:

  • macOS — Node.js 18.17 及以上
  • fetch_wiki_page — 获取指定 Confluence Wiki 页面并返回 Markdown、HTML 或纯文本正文
  • search_wiki — 按关键词检索 Confluence Wiki,返回标题、pageId 和页面 URL
  • get_wiki_attachments — 列出指定 Confluence 页面附件,适合查找原型图、截图等文件
  • wiki_health_check — 返回本地托管认证状态并列出可用工具,不访问网络
  • get_wiki_page_context — 获取 Wiki 页面证据上下文:正文、标题结构、表格、链接、图片、删除线和不确定关键词信号
  • get_wiki_comments — 获取 Confluence 页面评论列表,返回评论正文、作者、时间和 evidence signals
  • get_wiki_references — 获取 Wiki 页面引用的其他页面链接,可选抓取被引用页面的标题和摘要
  • get_wiki_assets — 列出 Wiki 页面的内嵌图片和附件,返回 URL、媒体类型和文件大小
  • download_wiki_asset — 下载 Wiki 附件或图片到本地目录。仅支持 wiki.imgo.tv 域名
  • get_wiki_requirement_bundle — 聚合获取 Wiki 页面的完整 evidence bundle:上下文、评论、引用、资产和权限问题
  • wiki_auth_login — 打开专属 Chrome Profile 进行交互式 Wiki 登录

Adding it to your client

The server ships on npm as confluence-wiki-mcp-server, 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.

When to reach for it

This sits in the browser automation group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Confluence's toolset — macOS, fetch_wiki_page, search_wiki and 11 more — is a fair guide to whether it matches your workflow. It is maintained by GitHub Actions; 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.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Confluence.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the confluence mcp server does with a few real requests.

Available tools

ToolWhat it does
macOSNode.js 18.17 及以上
fetch_wiki_page获取指定 Confluence Wiki 页面并返回 Markdown、HTML 或纯文本正文
search_wiki按关键词检索 Confluence Wiki,返回标题、pageId 和页面 URL
get_wiki_attachments列出指定 Confluence 页面附件,适合查找原型图、截图等文件
wiki_health_check返回本地托管认证状态并列出可用工具,不访问网络
get_wiki_page_context获取 Wiki 页面证据上下文:正文、标题结构、表格、链接、图片、删除线和不确定关键词信号
get_wiki_comments获取 Confluence 页面评论列表,返回评论正文、作者、时间和 evidence signals
get_wiki_references获取 Wiki 页面引用的其他页面链接,可选抓取被引用页面的标题和摘要
get_wiki_assets列出 Wiki 页面的内嵌图片和附件,返回 URL、媒体类型和文件大小
download_wiki_asset下载 Wiki 附件或图片到本地目录。仅支持 wiki.imgo.tv 域名
get_wiki_requirement_bundle聚合获取 Wiki 页面的完整 evidence bundle:上下文、评论、引用、资产和权限问题
wiki_auth_login打开专属 Chrome Profile 进行交互式 Wiki 登录
wiki_auth_status探测并报告托管认证状态,不返回凭据值
wiki_auth_logout登出并删除托管 Profile,需要 confirm=true 确认

How to install the Confluence MCP server

{
  "mcpServers": {
    "confluence-wiki": {
      "command": "npx",
      "args": ["-y", "confluence-wiki-mcp-server"]
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Example prompts to try

  • Use Confluence to macOS.
  • Use Confluence to fetch wiki page.
  • Use Confluence to search wiki.

Frequently asked questions

It connects Confluence to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (macOS, fetch_wiki_page, search_wiki, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Confluence directly.