Atlassian Confluence MCP Server
by aashari
Verified
get-page
Get detailed information and content of a specific Confluence page by ID.
PURPOSE: Retrieves the full content of a page in Markdown format along with comprehensive metadata.
WHEN TO USE:
- When you need to read the actual content of a page
- When you need detailed page metadata (author, dates, versions)
- When you need to extract specific information from a page
- After using list-pages or search to identify relevant page IDs
WHEN NOT TO USE:
- When you don't know which page to look for (use list-pages or search first)
- When you only need basic page information without content (use list-pages instead)
- When you need to find content across multiple pages (use search instead)
RETURNS: Complete page content in Markdown format with metadata including title, author, version, space, and creation/modification dates.
EXAMPLES:
- By ID: {id: "123456"}
ERRORS:
- Page not found: Verify the page ID is correct
- Permission errors: Ensure you have access to the requested page
- Rate limiting: Cache page content when possible for frequently accessed pages
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The numeric ID of the Confluence page to retrieve (e.g., "456789"). This is required and must be a valid page ID from your Confluence instance. The page content will be returned in Markdown format for easy reading. |