Skip to main content
Glama

List campaigns

list_campaigns
Read-onlyIdempotent

List a bounded page of campaign identities for one website owned by the authenticated Supovia organization. Recipient lists, subjects, message content, user ids, organization ids, and arbitrary metadata are excluded, and campaigns cannot be sent from this tool.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum campaigns per page (default 20)
cursorNoOpaque pagination cursor from a previous call
websiteIdYesOrganization-owned website id whose campaigns to list

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageYes
campaignsYes

TDQS

A4.5/5.0
Behavior5/5

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

Annotations already cover readOnly, idempotent, and nondestructive. The description adds valuable behavioral context: it returns only campaign identities (not full objects), is bounded by pagination, and explicitly excludes content fields and sending capability. This goes beyond the safety annotations to set precise expectations about output scope.

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, well-structured sentence that front-loads the core purpose and then lists exclusions. There is no fluff or redundancy; every clause earns its place by clarifying scope and what the tool does not do.

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

Completeness5/5

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

Given the output schema exists (documenting return structure) and annotations cover safety, the description sufficiently covers scope, exclusions, and limitations. Nothing an agent needs to decide whether to call this tool is missing; the bounded page, website ownership, and inability to send are all stated.

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 covers all parameters (limit, cursor, websiteId) with descriptions, so the baseline is 3. The description adds context about the result being identities and bounded pages, which indirectly relates to limit/cursor, but it does not provide specific parameter syntax or additional semantics beyond the schema. It neither fills a coverage gap nor adds significant meaning beyond what the schema already documents.

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 clearly states the verb 'List' and the resource 'campaign identities' for a specific scope: one website owned by the authenticated Supovia organization. It explicitly lists exclusions (recipient lists, subjects, content, ids, metadata) and clarifies that sending is not possible, distinguishing it from sibling send tools. This is specific and unambiguous.

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 context: requires a websiteId for a website owned by the authenticated org, returns a bounded page, and cannot send campaigns. It does not explicitly name alternative tools for acquiring full campaign details, but the exclusions imply that if content is needed, another tool must be used. This is clear enough but lacks explicit 'use this when' instructions relative to siblings.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.2/5.0
Disambiguation5/5

Each tool targets a distinct action: retrieving single resources (get_conversation, get_document, get_website), listing sets (list_*), searching (search_documents), mutating state (resolve_conversation, send_message), and rendering views (show_customer_inbox, show_support_overview). Even the two inbox-related tools are clearly separated: one opens and counts, the other refreshes a specific conversation. No two tools could be easily confused.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with clear verbs: get, list, search, open, resolve, send, show. The naming is uniform across the set, with no mixed conventions (e.g., camelCase or vague verbs like 'process'). The pattern makes it predictable for an agent to infer tool purposes.

Tool Count5/5

With 14 tools, the server is well-scoped for a customer support/support-documentation domain. Each tool covers a distinct responsibility without redundancy, and the count is within the ideal 3–15 range. There is no bloat or triviality.

Completeness4/5

The tool surface covers the core workflows: listing and retrieving conversations, resolving or sending messages, reading and searching documents, and listing websites/campaigns. Minor gaps exist (e.g., no document update/delete, no campaign creation/send), but these appear intentionally read-only for safety and the main support operations are well covered.

Resources