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.
Conectar
Añade esta configuración a .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>"
}
}
}
}Herramientas (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"
}
}
}Recursos
Este servidor no expone ningún recurso.
Prompts
Este servidor no expone ningún prompt.
Información del servidor
- Repositorio
- https://github.com/sooperset/mcp-atlassian
- Licencia
- MIT
- Versión
- 0.11.0
- Estrellas
- 2,600
- Última actualización
- 24 de junio de 2026