Skip to main content
Glama
thamaraiselvam

Jira & Confluence MCP Server

create_confluence_page

Create a new Confluence page in a given space using Markdown content, which is automatically converted to Confluence format. Optionally nest it under a parent page.

Instructions

Create a new Confluence page in a given space. REQUIRED: Always provide Markdown content. Supports headers, lists, bold, italic, code blocks, tables, links, images, and more. Content is automatically converted to Confluence storage format (HTML). Optionally nest the page under a parent page.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYesThe title of the new page.
spaceKeyYesThe key of the Confluence space to create the page in (e.g. 'ENG').
parentPageIdNoOptional. The ID of an existing page to nest this new page under.
markdownContentYesREQUIRED. The page body in Markdown format. Use headers (# ## ###), lists (*, -), bold (**text**), italic (*text*), code blocks (```), tables (| col |), links ([text](url)), and images. This will be converted to HTML for Confluence.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv3.1.2

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full behavioral burden. It usefully discloses that Markdown is auto-converted to Confluence storage format (HTML), which is real behavioral context. However, it omits permission requirements (notable given the check_confluence_permissions sibling), duplicate-title behavior, and what the tool returns on success.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Four short sentences, front-loaded with the action and the hard requirement ('Always provide Markdown content'). The markdown feature enumeration is slightly list-heavy but earns its place by setting expectations for input format.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutation tool with no annotations and no output schema, the description covers input format well but leaves gaps on permissions, failure modes, and the created page's identity in the response. Adequate but not complete for a write operation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so all four parameters are already documented in the schema, which sets the baseline at 3. The description reinforces the markdownContent requirement and lists supported syntax, but largely restates what the schema's own parameter description already says rather than adding new semantics.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb and resource ('Create a new Confluence page in a given space'), which cleanly separates it from siblings like update_confluence_page and get_confluence_page. The nesting capability is also named up front, so an agent knows this is the creation path rather than a read or edit path.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Usage is only implied: the description establishes creation context and mentions optional parent nesting, but never says when to prefer this over update_confluence_page or what to do if a page with the same title already exists. No prerequisites or alternatives are named.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.