Skip to main content
Glama
counter-measure

Everclear MCP Server

get_intents

Retrieve a paginated list of Everclear intents, optionally filtered by status using limit and offset.

Instructions

Retrieve a list of intents from Everclear

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoNumber of results to return
offsetNoPagination offset
statusNoFilter by intent status

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.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 behavioral burden. It does not disclose authentication requirements, pagination behavior, default ordering, response shape, or error conditions. The word 'Retrieve' implies a read, but nothing more specific is stated.

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 a single efficient sentence that is front-loaded with the core action and resource. It is appropriately sized, though it errs toward under-specification rather than over-verbosity.

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 output schema and no annotations, the description is incomplete for a list tool with pagination and filtering parameters. It does not explain what the returned intents look like, how pagination works, or how to use the status filter, all of which an agent would need to invoke it confidently.

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 limit, offset, and status. The description adds no parameter semantics beyond what is in the schema. Per the rubric, a baseline of 3 is appropriate when the schema does the heavy lifting.

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 gives a clear verb ('Retrieve') and resource ('list of intents'), and names the source system Everclear. However, it does not differentiate this tool from the sibling 'get_intent_details', so an agent must infer that this returns a collection rather than details for a single intent.

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 'get_intent_details' or any other sibling. The description provides no context, prerequisites, or exclusions, leaving usage entirely implied.

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