MCP Atlassian

by sooperset
Verified

confluence_get_page

Retrieve Confluence page content by ID, optionally converting to markdown or including metadata. Supports both Confluence Cloud and Server/Data Center deployments via MCP Atlassian integration.

Instructions

Get content of a specific Confluence page by ID

Input Schema

NameRequiredDescriptionDefault
convert_to_markdownNoWhether to convert page to markdown (true) or keep it in raw HTML format (false). Raw HTML can reveal macros (like dates) not visible in markdown, but CAUTION: using HTML significantly increases token usage in AI responses.
include_metadataNoWhether to include page metadata such as creation date, last update, version, and labels
page_idYesConfluence page ID (numeric ID, can be found in the page URL). For example, in the URL 'https://example.atlassian.net/wiki/spaces/TEAM/pages/123456789/Page+Title', the page ID is '123456789'

Input Schema (JSON Schema)

{ "properties": { "convert_to_markdown": { "default": true, "description": "Whether to convert page to markdown (true) or keep it in raw HTML format (false). Raw HTML can reveal macros (like dates) not visible in markdown, but CAUTION: using HTML significantly increases token usage in AI responses.", "type": "boolean" }, "include_metadata": { "default": true, "description": "Whether to include page metadata such as creation date, last update, version, and labels", "type": "boolean" }, "page_id": { "description": "Confluence page ID (numeric ID, can be found in the page URL). For example, in the URL 'https://example.atlassian.net/wiki/spaces/TEAM/pages/123456789/Page+Title', the page ID is '123456789'", "type": "string" } }, "required": [ "page_id" ], "type": "object" }
ID: kc33m1kh5m