Skip to main content
Glama

confluence_create_inline_comment

Create inline comments on Confluence pages by specifying selection coordinates and comment body. Resolve the need to annotate specific text or content directly within a page.

Instructions

Create an inline comment on a page. inline_comment_properties should contain the selection coordinates required by the Confluence v2 API.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYes
page_idNo
max_charsNo
representationNostorage
parent_comment_idNo
inline_comment_propertiesYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.7/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It does disclose one important technical requirement — that inline_comment_properties must contain Confluence v2 selection coordinates — but it omits mutation side effects, permission needs, failure modes, and how the API identifies the target page. This is minimal transparency for a mutating tool.

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?

The description is concise and front-loaded: the core action comes first, followed by the most API-specific caveat. Both sentences earn their place, though the brevity leaves substantive gaps better addressed by other dimensions.

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

Completeness2/5

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

For a tool with six parameters, no annotations, no output schema, and 0% schema description coverage, the description is incomplete. It fails to clarify required body semantics, disambiguate page_id from parent_conditional page_id, explain max_chars behavior, or describe when representation matters. An agent would likely need external API knowledge to invoke it correctly.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate, but it explains only inline_comment_properties (selection coordinates). The other five parameters — body, page_id, max_chars, representation, and parent_comment_id — receive no semantic explanation, and the nested object remains opaque.

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

Purpose4/5

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

The description clearly states the action and resource: 'Create an inline comment on a page.' This distinguishes it from non-comment tools and conveys the inline nature of the operation. However, it does not explicitly contrast with the near-named sibling confluence_create_comment or the update variant, so it stops short of full differentiation.

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

Usage Guidelines2/5

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

There is no guidance on when to use this tool versus alternatives like confluence_create_comment, confluence_update_inline_comment, or confluence_list_comments. The only usage-related hint is the implementation note about inline_comment_properties, but no use-case context or exclusion criteria is provided.

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