Skip to main content
Glama

Confluence Search

confluence_search

Find Confluence pages and content using CQL queries. Specify search conditions like text, type, space, or last modified date to retrieve relevant results.

Instructions

Search Confluence with CQL.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cqlYese.g. 'type = page AND space = DOCS AND title ~ "Runbook"' or 'text ~ "opt-out" AND lastmodified > now("-30d")'.
limitNoMax results (default 20, max 100).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. 'Search' implies a read-only operation, but the description does not confirm this, nor does it mention any limits, pagination behavior, or error conditions. It adds no context beyond the verb.

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

Conciseness3/5

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

The description is a single sentence, which is concise and front-loaded. However, it is under-specified and offers no additional structure or nuance, making it minimally useful beyond the tool name.

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?

The output schema exists and parameters are fully documented, so the description only needs to state the purpose. It does that, but it fails to mention any usage context or limitations, and with many sibling tools, a bit more context would help an agent choose correctly.

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%, with both cql and limit well-documented including examples and defaults. The description adds nothing about parameters, so the baseline of 3 applies.

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 states the verb 'Search' and the resource 'Confluence' with the method 'CQL', clearly indicating a search operation. It is specific enough to distinguish from sibling tools like get_page or get_page_children, though it does not explicitly contrast them.

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?

The description gives no guidance on when to use this tool versus alternatives. There is no mention of prerequisites, typical scenarios, or when to prefer it over get_page or jira_search_issues. The user must infer usage from the name and schema.

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