Skip to main content
Glama
get-mcp-ads

Google Ads by Get MCP Ads

google ads search fields

google_ads_search_fields
Read-onlyIdempotent

Search Google's live GoogleAdsField catalog to find queryable resources, attributes, segments, metrics, enum values, and compatibility relationships before writing a GAQL query.

Instructions

Search Google's live GoogleAdsField catalog. Discovers every queryable GAQL resource, attribute, segment, metric, enum value, and selectable-with compatibility relationship. Read-only and useful before a raw GAQL query.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryNoOptional raw GoogleAdsField SELECT query. When provided it replaces the structured filters.
categoryNoCategory selected from the provider dictionary or field catalogue.
pageSizeNoMaximum items requested per page. Follow the returned pagination information for remaining results.
sortableNoFilter the field catalogue by whether the field can appear in ORDER BY.
pageTokenNoOpaque continuation token returned by the preceding provider response.
filterableNoFilter the field catalogue by whether the field can appear in WHERE.
selectableNoFilter the field catalogue by whether the field can appear in SELECT.
nameContainsNoCase-sensitive field-name substring, e.g. conversion or asset_group

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYesOriginal tool result: parsed JSON when the text is JSON, otherwise the text or multiple MCP content blocks. Provider fields depend on the selected query.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.1

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false, so the safety profile is fully covered. The description adds non-redundant context: the catalog is 'live' (not cached), and the discovery scope includes compatibility relationships between fields. These traits are consistent with the annotations, and no 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.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three short sentences with zero waste: the verb-resource pairing is front-loaded, the scope claim earns its place, and the usage context closes efficiently. Every sentence contributes information not available elsewhere in the structured fields.

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?

With a rich output schema present, return values need no description. The description, annotations, and 100%-covered schema collectively give an agent everything needed to call it correctly. Minor gap: the precedence between the raw 'query' param and the structured filters (query replaces filters) is documented only in the schema, not synthesized into the description.

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 description coverage is 100%, so the schema fully documents all 8 parameters including defaults and pagination semantics. The description adds no parameter-level detail beyond loosely mirroring the category enum (RESOURCE, ATTRIBUTE, SEGMENT, METRIC) in its scope statement. Baseline 3 is appropriate since the schema carries the load.

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 names a specific action ('Search'), a specific resource ('Google's live GoogleAdsField catalog'), and an explicit scope ('every queryable GAQL resource, attribute, segment, metric, enum value, and selectable-with compatibility relationship'). It also orients the agent among ~35 siblings by positioning this as metadata discovery ('useful before a raw GAQL query'), clearly distinguishing it from run_gaql and validate_query.

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?

'Useful before a raw GAQL query' gives clear contextual timing for when this should be invoked in a workflow. However, it never explicitly names alternatives (e.g., google_ads_run_gaql, google_ads_validate_query) or states when NOT to use it, so the agent must infer the contrast from sibling names rather than being told.

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