fetch_confluence_page
ActiveTool of IA-QA — 130+ QA & Dev Tools for AI Agents
declared in 1.0.0
Fetch a Confluence page and return its content as clean Markdown. Accepts a numeric page_id or a full page URL. Optionally lists direct child pages. BYOK — credentials transit in-memory only, never stored.
Parameters schema
{
"type": "object",
"required": [
"confluence_base_url",
"confluence_email",
"confluence_token"
],
"properties": {
"page_id": {
"type": "string",
"description": "Confluence page ID (numeric string), e.g. \"123456789\""
},
"page_url": {
"type": "string",
"description": "Full Confluence page URL (alternative to page_id), e.g. \"https://mycompany.atlassian.net/wiki/spaces/ENG/pages/123456789\""
},
"confluence_email": {
"type": "string",
"description": "Atlassian account email (same credentials as Jira)"
},
"confluence_token": {
"type": "string",
"description": "Atlassian API token"
},
"include_children": {
"type": "boolean",
"description": "List direct child pages (id + title) (default: false)"
},
"confluence_base_url": {
"type": "string",
"description": "Atlassian base URL, e.g. \"https://mycompany.atlassian.net\""
}
}
}Parent server
IA-QA — 130+ QA & Dev Tools for AI Agents
https://github.com/jcjamet/ia-qa
1/7 registries