Skip to main content
Glama

nevent_list_campaigns

Read-only

Call this to discover existing campaigns before reporting on performance or scheduling new sends. Returns campaigns for the active tenant with status, channel, send date, and top-level engagement metrics (sent, open rate, click rate). Filter by status (DRAFT/SCHEDULED/SENT/FAILED), channel (EMAIL/SMS), or date range. Use the returned campaign id to call nevent_get_campaign (full content + metrics) or nevent_get_campaign_insights (AI analysis).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sortNoField to sort by: createdAt (default) | executedAt | namecreatedAt
limitNoMaximum number of campaigns to return (default 50, max 200)
statusNoFilter by campaign status: EXECUTED | DRAFT | PAUSED | STOPPED | SCHEDULED
channelNoFilter by channel: EMAIL | SMS | WHATSAPP
date_toNoFilter campaigns created on or before this date (ISO 8601, e.g. "2024-12-31T23:59:59Z")
date_fromNoFilter campaigns created on or after this date (ISO 8601, e.g. "2024-01-01T00:00:00Z")
sort_orderNoSort direction: asc | desc (default desc)desc

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds transparency about what the tool returns (top-level metrics, not full content), scopes it to the active tenant, and signals that further detail requires other tools. No annotation contradiction exists.

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 compact and front-loaded with purpose, followed by return shape, filtering, and follow-up routing. It is well structured overall, though the filter sentence loses some credit because it contains inaccurate enum values.

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

Completeness4/5

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

For a read-only list tool with no output schema, the description adequately explains what is returned, the active-tenant scope, and how to proceed to related tools. It falls short of 5 mainly because the misleading status and channel examples could lead to incorrect calls, and the description does not fully reconcile its filter values with the schema.

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 coverage is 100%, so the baseline is 3, but the description's filter guidance is inaccurate: it lists status values DRAFT/SCHEDULED/SENT/FAILE D while the schema enum is EXECUTED/DRAFT/PAUSED/STOPPED/SCHEDULED, and lists channel EMAIL/SMS while the schema includes WHATSAPP. This can actively mislead an agent into sending invalid parameter values, outweighing the minor interpretive value it adds.

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 opens with a specific purpose: discovering existing campaigns before reporting or scheduling, which clearly names the resource and intended action. It also states the returned fields (status, channel, send date, top-level metrics) and distinguishes itself from the deeper follow-up tools nevent_get_campaign and nevent_get_campaign_insights.

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

Usage Guidelines5/5

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

It explicitly tells the agent when to call: before performance reporting or scheduling new sends. It also provides concrete routing guidance, saying to use the returned campaign id to call nevent_get_campaign or nevent_get_campaign_insights for deeper details.

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

A3.6/5.0
Disambiguation3/5

Most domain groups are distinct, but the campaign reporting cluster has three tools returning overlapping engagement metrics (get_campaign, get_campaign_metrics, campaign_report), and paid_ads_status vs paid_ads_health have fuzzy boundaries. The detailed descriptions mitigate but do not eliminate the risk of an agent calling the wrong tool.

Naming Consistency3/5

All names use the nevent_ prefix and snake_case, and most CRUD operations follow verb_noun. However, several tools reverse the order or drop the verb entirely (segment_preview, segment_execute, campaign_report, paid_ads_status, analytics_query), making the convention mixed but still readable.

Tool Count1/5

With 59 tools, this is far above the 25+ 'too many' threshold and falls into the 50+ extreme range. The broad domain coverage explains some of the size, but for an agent the set is likely to be overwhelming and harder to navigate than a more focused server.

Completeness3/5

The core marketing workflow (segments, templates, campaign creation, quote, schedule, metrics) is covered, but there is no way to update, cancel, or delete a campaign, and templates and segments lack delete operations. These are notable lifecycle gaps that agents will hit when users want to change or clean up resources.