Skip to main content
Glama

Unlink campaigns

unlink_campaigns
Destructive

Clear a platform link from the active Space's campaigns, keeping the local campaigns. With delete_remote=true, also removes the campaign on the ad platform (already-gone counts as success). Returns a per-id result map (already-unlinked ids report 'not_linked'). Unlink then trigger_sync to re-create campaigns cleanly on the platform. Mutates external platforms when delete_remote is set. Scoped to the active Space — see set_active_space to switch, or pass space_id to override for this one call.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
platformYesPlatform id to unlink from, e.g. "microsoft-ads".
space_idNoOverride the active Space for this one call. Defaults to the active Space set via set_active_space (or GROWOMAT_SPACE_ID on the server). Pass to read/write a different Space without changing the session binding.
campaign_idsNoCampaign ids to unlink. Omit to unlink every campaign linked to the platform.
delete_remoteNoAlso remove the campaign on the ad platform. Default false (only the local link is cleared).

TDQS

A4.6/5.0
Behavior5/5

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

Annotations already indicate destructiveHint=true, but the description adds essential context: 'Mutates external platforms when delete_remote is set' and 'already-gone counts as success' (idempotence). It also discloses return behavior ('per-id result map') and clarifies that local campaigns are kept. These details go beyond annotations and are crucial for safe invocation.

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 dense and mostly front-loaded, with the core action first. However, 'Mutates external platforms when delete_remote is set' is somewhat redundant with the earlier sentence about delete_remote. Still, every sentence carries useful information, and there is no fluff beyond minor repetition.

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 no output schema, the description compensates by stating the return format ('per-id result map') and idempotent behavior. It covers purpose, mutation risk, space scoping, and a follow-up action (trigger_sync). This is exceptionally complete for a destructive tool with no output schema.

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?

Since schema coverage is 100%, the baseline is 3. The description enriches the semantics of delete_remote by noting 'already-gone counts as success', and clarifies space_id as an override for the active Space. While the schema already documents each parameter well, these behavioral details provide additional nuance, justifying a slight bump.

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 clear specific action: 'Clear a platform link from the active Space's campaigns, keeping the local campaigns.' This distinguishes it from delete_campaign (which removes campaigns entirely) and other sibling tools. The scope is explicit (active Space, per-campaign), and the verb 'unlink' matches the tool name.

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 gives a concrete workflow: 'Unlink then trigger_sync to re-create campaigns cleanly on the platform.' It also explains space-scoping behavior with set_active_space and space_id override. However, it doesn't explicitly contrast with delete_campaign or mention when not to use, but the context is clear enough for an agent to select appropriately.

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
Disambiguation4/5

Most tools follow a clear resource+action pattern (get_ad, update_ad, delete_ad), so entity-level tools are easy to distinguish. The main ambiguity is among reporting/status tools like get_conversion_status, get_conversion_health, get_conversion_report, and account_summary vs. get_performance_stats, which could tempt misselection without reading descriptions.

Naming Consistency5/5

Naming is highly consistent: nearly every resource has create_/get_/update_/delete_/list_ variants, with predictable special verbs like set_, trigger_, preview_, and upload_. Minor exceptions like account_summary or get_angle_readout still follow the same readable verb-driven style.

Tool Count1/5

83 tools is an extreme surface for an MCP server, even one covering ad management. Most entities have full CRUD plus many custom readouts and report variants, which creates context bloat and makes tool selection unnecessarily expensive for the agent.

Completeness4/5

The platform covers the full campaign lifecycle: campaigns, ad groups, ads, keywords, assets, business/creative planes, conversion actions, sync, budget, and targeting are all represented. Minor gaps exist—conversion sources have create/list but no get/update/delete, and there is no explicit way to update or remove a conversion source—but these can be worked around.

Resources