Skip to main content
Glama

Metadata MCP Connector

Manage Experiment

manage_experiment
Destructive

Pause or restart a whole experiment (a launched channel campaign inside a wizard campaign).

            KEYWORDS: pause, stop, restart, resume, unpause, experiment, control, manage, halt

            WHEN TO USE:
            - User asks to "pause experiment X"
            - User wants to "stop the LinkedIn experiment"
            - User requests to "restart experiment Y"
            - User wants to "resume/unpause a paused experiment"

            SCOPE - DO NOT CONFUSE WITH SIMILAR TOOLS:
            - manage_experiment (this tool) acts on ONE WHOLE EXPERIMENT.
            - pause_experiment_keyword / restart_experiment_keyword act on ONE
              KEYWORD inside an experiment - they never pause the experiment itself.
            - manage_campaign acts on the whole wizard campaign, which can span
              several experiments/channels.

            ACTIONS:
            - pause: Stop ad serving and budget spend for the experiment
            - restart: Resume a paused experiment so it serves ads and spends again

            WORKFLOW:
            1. Find the experiment: search_experiments(search_name="my experiment")
               and note experimentId and statusLabel from the results
            2. Pause it: manage_experiment(experiment_id=123, action="pause")
            3. Or restart it: manage_experiment(experiment_id=123, action="restart")

            IMPORTANT VALIDATION REQUIREMENTS:
            - **CRITICAL**: You can ONLY pause experiments that are currently active
            - **CRITICAL**: You can ONLY restart experiments that are currently Paused
            - Use search_experiments first to verify the current experiment status

            RESTART BUDGET CONFIRMATION FLOW:
            Restarting first estimates the impact on budget groups (the same check
            the main UI runs). If any budget group is impacted, the tool does NOT
            restart: it returns status="requires_confirmation" with the impacted
            groups in budgetImpact. Present the impact to the user, and only after
            they explicitly confirm, call again with confirm_budget_impact=true.

            WARNING: This changes the live state of the experiment on the ad channel.
            WARNING: ASYNC FLOW: The channel-side status change may take a moment to
            propagate. Verify later with search_experiments.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
actionYesThe action to perform: 'pause' to stop the experiment, 'restart' to resume it
experiment_idYesThe experiment ID to pause or restart (experimentId from search_experiments).
confirm_budget_impactNoRestart only. Set true ONLY after the user explicitly confirmed the budget-group impact returned by a previous manage_experiment call with status='requires_confirmation'.
auto_pause_ignore_historical_dataNoRestart only. When the experiment was auto-paused for low performance, true tells the optimizer to ignore the historical performance data that caused the pause.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.7/5.0
Behavior5/5

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

Annotations only convey readOnlyHint=false, openWorldHint=true, destructiveHint=true. The description adds substantial behavioral context beyond that: it mutates live channel state (WARNING), which validates destructiveHint; it discloses the async propagation delay and instructs verification via search_experiments; it reveals the conditional requires_confirmation flow for budget-group impact; and it states preconditions (only pause active experiments, only restart paused ones). No contradiction with annotations.

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 long but well-organized into labeled sections (KEYWORDS, WHEN TO USE, SCOPE, ACTIONS, WORKFLOW, VALIDATION, CONFIRMATION FLOW, WARNINGS), and the core purpose is front-loaded in the first sentence. The KEYWORDS list is somewhat redundant with the WHEN TO USE section, and the WORKFLOW partially restates ACTIONS, but these repetitions serve reinforcement and are not filler.

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 destructive 4-parameter tool with no output schema, the description covers preconditions, side effects, async behavior, the confirmation sub-flow, and how to verify results. The only notable gap is the precise success response shape (e.g., what status values a successful pause returns), though the requires_confirmation status and budgetImpact field are already disclosed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/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 adds real semantic value: the ACTIONs section defines what 'pause' and 'restart' actually do (stop ad serving/budget spend vs. resume), the RESTART BUDGET CONFIRMATION FLOW explains when and how confirm_budget_impact must be set, and the workflow maps experiment_id to the experimentId field returned by search_experiments. Only auto_pause_ignore_historical_data gets light treatment, though its schema description is adequate.

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 opening sentence uses a specific verb+resource pair ('Pause or restart a whole experiment') and defines the resource precisely ('a launched channel campaign inside a wizard campaign'). The SCOPE section explicitly distinguishes this tool from pause_experiment_keyword/restart_experiment_keyword (keyword-level) and manage_campaign (wizard-campaign-level), so an agent can disambiguate without opening schemas.

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?

The WHEN TO USE section lists concrete user-query patterns ('pause experiment X', 'stop the LinkedIn experiment'), and SCOPE names the alternatives with exact conditions for when they apply. The WORKFLOW section gives an explicit call sequence via search_experiments first, which is actionable guidance an agent can follow directly.

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.

Resources