0.1.0npm · confluence-http-api-mcp · current release
Observed 2026-08-23T01:26:47.765Z using mcpSecurity-inventory. Status: succeeded. Negotiated protocol: 2025-06-18.
{
"tools": {}
}| Tool | Category | Annotations | Risk |
|---|---|---|---|
confluence_get_pageGet a Confluence page by numeric content id. Returns title, space, ancestors and plain-text body.Input schema{
"type": "object",
"properties": {
"pageId": {
"type": "string",
"description": "Content id, e.g. 123456789"
},
"maxBodyChars": {
"type": "number",
"description": "Truncate body text after N chars (default 12000)",
"default": 12000
}
},
"required": [
"pageId"
]
} | — | — · — | — |
confluence_get_page_by_titleGet a page by space key and exact title (first match).Input schema{
"type": "object",
"properties": {
"spaceKey": {
"type": "string",
"description": "Space key, e.g. GAR"
},
"title": {
"type": "string",
"description": "Exact page title"
},
"maxBodyChars": {
"type": "number",
"default": 12000
}
},
"required": [
"spaceKey",
"title"
]
} | — | — · — | — |
confluence_get_page_childrenList child pages under a parent page (table of contents / doc tree).Input schema{
"type": "object",
"properties": {
"pageId": {
"type": "string",
"description": "Parent content id"
},
"limit": {
"type": "number",
"default": 50
}
},
"required": [
"pageId"
]
} | — | — · — | — |
confluence_list_spacesList Confluence spaces accessible with the token.Input schema{
"type": "object",
"properties": {
"limit": {
"type": "number",
"description": "Max spaces (default 50)",
"default": 50
},
"start": {
"type": "number",
"description": "Pagination offset (default 0)",
"default": 0
}
}
} | — | — · — | — |
confluence_searchSearch Confluence pages with CQL. Examples: `space=GAR AND type=page`, `space=GAR AND title ~ "API"`, `text ~ "address search" AND space=GAR`. Returns titles, ids, excerpts.Input schema{
"type": "object",
"properties": {
"cql": {
"type": "string",
"description": "Confluence Query Language expression"
},
"limit": {
"type": "number",
"description": "Max results (default 25, max 50)",
"default": 25
}
},
"required": [
"cql"
]
} | — | — · — | — |