Confluence MCP Server
Productivitystdiov0.11.0
MCP server for Atlassian Confluence that lets AI agents search the knowledge base, read and create pages, update content, and navigate spaces. Useful for grounding answers in internal documentation and for drafting or maintaining wiki content directly from an AI client.
连接
将此配置添加到 .claude/mcp.json
{
"mcpServers": {
"confluence": {
"command": "uvx",
"args": [
"mcp-atlassian"
],
"env": {
"CONFLUENCE_URL": "<YOUR_CONFLUENCE_URL>",
"CONFLUENCE_API_TOKEN": "<YOUR_CONFLUENCE_API_TOKEN>",
"CONFLUENCE_EMAIL": "<YOUR_CONFLUENCE_EMAIL>"
}
}
}
}工具 (3)
search_pages
Search Confluence content using text or CQL.
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"description": "Search text or CQL expression"
},
"space_key": {
"type": "string",
"description": "Optional space to scope the search"
}
}
}get_page
Retrieve the content of a Confluence page by ID.
{
"type": "object",
"required": [
"page_id"
],
"properties": {
"page_id": {
"type": "string",
"description": "Confluence page ID"
}
}
}create_page
Create a new Confluence page in a space.
{
"type": "object",
"required": [
"space_key",
"title",
"body"
],
"properties": {
"body": {
"type": "string",
"description": "Page body in storage or Markdown format"
},
"title": {
"type": "string",
"description": "Page title"
},
"parent_id": {
"type": "string",
"description": "Optional parent page ID"
},
"space_key": {
"type": "string",
"description": "Target space key"
}
}
}资源
此服务器未提供任何资源。
提示词
此服务器未提供任何提示词。
服务器信息
- 许可证
- MIT
- 版本
- 0.11.0
- 星标
- 2,600
- 最后更新
- 2026年6月24日