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"
}
}
}Ресурсы
Этот сервер не предоставляет ресурсы.
Промпты
Этот сервер не предоставляет промпты.
Сведения о сервере
- Репозиторий
- https://github.com/sooperset/mcp-atlassian
- Лицензия
- MIT
- Версия
- 0.11.0
- Звёзды
- 2,600
- Последнее обновление
- 24 июня 2026 г.