Confluence MCP Server
Provides document search and content retrieval functionality for Confluence, enabling access to page content, metadata, and search capabilities across Confluence workspaces.
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 MCP Serversearch for API documentation about user authentication"
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 Server
基于 Model Context Protocol (MCP) 的 Confluence 文档访问服务,提供文档搜索和内容获取功能。
功能特性
文档搜索
支持标题和全文搜索
限制返回结果数量
返回匹配内容片段和文档基本信息
文档内容获取
获取完整的页面内容
包含元数据(标题、空间信息、版本等)
创建和修改信息
页面标签
Related MCP server: confluence-mcp-server
快速开始
环境配置
创建 .env 文件配置 Confluence 访问信息:
CONFLUENCE_URL="your-confluence-url"
CONFLUENCE_USERNAME="your-username"
CONFLUENCE_PASSWORD="your-password"
# 或者使用 Token 认证
CONFLUENCE_TOKEN="your-api-token"安装依赖
# 安装项目依赖
uv pip install -e .
# 或者直接安装依赖包
uv pip install "mcp[cli]>=1.5.0" "atlassian-python-api>=3.41.4" "typer>=0.9.0"运行服务
# 使用 uvx
/Users/hose/.local/bin/uvx --directory /Users/hose/code/ops/ops-mcp mcp main.py
# 或者使用 uv run
uv run --with mcp mcp run main.pyMCP 接口说明
Tools (工具)
search_confluence
# 搜索 Confluence 内容 Input: - query: str # 搜索关键词 - limit: int = 10 # 返回结果数量限制 Output: { "success": true, "query": "搜索词", "total": 5, "results": [ { "id": "12345", "title": "页面标题", "type": "page", "url": "页面URL", "excerpt": "匹配内容片段" } ] }get_confluence_page
# 获取页面详细信息 Input: - page_id: str # 页面ID Output: { "success": true, "page": { "id": "12345", "title": "页面标题", "space": { "key": "SPACE", "name": "空间名称" }, "version": 1, "content": "页面内容", "url": "页面URL", "created": { "date": "创建时间", "by": "创建者" }, "modified": { "date": "修改时间", "by": "修改者" }, "labels": ["标签1", "标签2"] } }
Resources (资源)
confluence://pages/{page_id}
通过页面ID直接获取页面内容和元数据
返回 JSON 格式数据
confluence://search/{query}
通过关键词直接搜索内容
返回 JSON 格式的搜索结果
错误处理
所有接口在出错时返回统一格式:
{
"success": false,
"error": "错误信息描述"
}使用示例
搜索文档
result = await mcp.use_tool("search_confluence", {
"query": "Python",
"limit": 5
})获取页面内容
page = await mcp.use_tool("get_confluence_page", {
"page_id": "12345"
})使用资源URI
content = await mcp.access_resource("confluence://pages/12345")
search_results = await mcp.access_resource("confluence://search/Python")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
- FlicenseNot gradedqualityDmaintenanceAn 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
- FlicenseAqualityCmaintenanceMCP server for Confluence REST API enabling page retrieval, attachment downloads, space listing, comment access, and full-text search via tools.6
- AlicenseNot gradedqualityCmaintenanceMCP server for searching and retrieving pages from Atlassian Confluence.411MIT
Related MCP Connectors
MCP Server for JFrog, providing tools for development and artifact management.
MCP server for skill documentation, generated by doc2mcp.
MCP server for AI access to Swagger by SmartBear.
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/xiandan-erizo/ops-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server