Skip to main content
Glama
konkomaji

Google Marketing MCP

by konkomaji

ga4_delete_google_ads_link

Delete a GA4-Google Ads link by its link ID to remove connections to deactivated Ads accounts. Requires confirmation and Editor access on the GA4 property.

Instructions

Remove a GA4<->Ads link, e.g. one pointed at a deactivated Ads account.

Args: link_id: from ga4_list_google_ads_links (not the customer_id). confirm: must be true to actually delete. If this 403s, the credential has Viewer, not Editor, on the property -- fix under Admin > Property Access Management, or delete it by hand in the GA4 UI as a fallback.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
confirmNo
link_idYes
property_idNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description carries the full behavioral burden, and it does well: it discloses the destructive nature, the confirm=true safety guard, the exact 403 failure mode (credential has Viewer not Editor), and the remediation path (Admin > Property Access Management, or manual deletion in GA4 UI). This goes beyond a bare 'delete' statement.

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?

Well-organized with a front-loaded purpose line followed by terse, information-dense arg explanations. Every sentence earns its place — the 403 handling and fallback are genuinely useful, not padding.

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?

Complete for a destructive unlink operation: it covers the confirm guard, the auth failure mode, the remediation, and the link_id source. The output schema frees it from explaining return values. The only gap is the unexplained property_id parameter.

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 0%, so the description must compensate. It explains link_id (from ga4_list_google_ads_links, and explicitly not the customer_id) and confirm (must be true to actually delete) — both high-value disambiguations. However, property_id is not mentioned anywhere despite being a listed parameter.

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?

States a specific verb+resource ('Remove a GA4<->Ads link') with a concrete example use case (a link pointed at a deactivated Ads account). The name itself and the example make it unambiguous against siblings like ga4_create_google_ads_link and ga4_list_google_ads_links.

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

Usage Guidelines3/5

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

Gives a clear when-to-use context via the deactivated-account example and the 403/Versus-Editor scenario plus a UI fallback. However, it never explicitly states when not to use the tool or names an alternative to prefer, so usage guidance is implied rather than explicit.

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

Deploy Server

Other Tools