get_page
Retrieve a specific Confluence page by its ID with optional body formats using Confluence MCP Server to access and manage content programmatically.
Instructions
Retrieve a specific Confluence page by ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| bodyFormat | No | Body format to include: "storage" or "view" (optional) | |
| pageId | Yes | Confluence page ID |
Input Schema (JSON Schema)
{
"properties": {
"bodyFormat": {
"description": "Body format to include: \"storage\" or \"view\" (optional)",
"enum": [
"storage",
"view"
],
"type": "string"
},
"pageId": {
"description": "Confluence page ID",
"type": "string"
}
},
"required": [
"pageId"
],
"type": "object"
}