Skip to main content
Glama
Vijay-Duke
by Vijay-Duke

list_pages_created_by_user

List all Confluence pages created by a specified user, with optional space and date filters to find relevant content.

Instructions

List all pages created by a specific user, with optional filtering by space or time range.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoThe maximum number of pages to return. Default is 25, maximum is 100.
startNoThe starting index for pagination. Default is 0.
endDateNoEnd date for filtering pages (format: YYYY-MM-DD).
spaceKeyNoOptional space key to filter results to a specific space.
usernameNoThe username of the user (alternative to accountId).
accountIdNoThe Atlassian account ID of the user.
startDateNoStart date for filtering pages (format: YYYY-MM-DD).

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv3.0.0

TDQS

A3.6/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 implies a read-only listing operation but does not disclose pagination limits, the need for a user identifier despite all params being optional, or any authentication/error behavior. Calling it 'all pages' while the schema caps results at 100 is potentially misleading.

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

Conciseness5/5

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

The description is a single front-loaded sentence with no filler. It conveys the core purpose and the main filtering dimensions efficiently.

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?

Given no annotations, no output schema, and seven optional-looking parameters, the description is incomplete. It never explains that at least one of username or accountId is likely required despite the schema listing no required fields, and it does not mention pagination behavior. An agent could easily invoke this without a user identifier and fail.

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 the schema already documents all seven parameters individually. The description's mention of 'optional filtering by space or time range' adds only a high-level grouping and no new parameter-level meaning, so the baseline of 3 is appropriate.

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?

The description states a specific verb ('List'), a clear resource ('pages created by a specific user'), and optional filter dimensions (space, time range). This clearly distinguishes it from related tools like list_attachments_uploaded_by_user or search_pages_by_user_involvement.

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

Usage Guidelines4/5

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

The description provides clear context for when to use this tool: when you need pages created by a particular user, optionally scoped by space or date. It does not explicitly name alternatives or exclusions, so it falls short of a 5.

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