Skip to main content
Glama

Trillboards DOOH Advertising

activate_signal

[AdCP Signals] Activate an audience signal for DSP targeting.

Returns an activation_key token for referencing this signal activation. Free-form Trillboards signal labels remain custom parameters. IAB Audience Taxonomy 1.1 segments are emitted only when registered IDs are supplied explicitly.

WHEN TO USE:

  • Converting audience signals into actionable targeting parameters

  • Activating already-curated, registered IAB segment IDs for programmatic requests

  • Creating reusable targeting configurations

RETURNS:

  • activation_key: Token for referencing this activation (24h expiry)

  • targeting: { iab_segments, iab_taxonomy_version, custom_params }

  • screen_count, provider, data_source, methodology

EXAMPLE: User: "Activate the registered $100k-$149k household-income segment on my screens" activate_signal({ signal_type: "audience", parameters: { iab_audience_segment_ids: ["68"] }, screen_ids: ["507f1f77bcf86cd799439011"] })

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
parametersYesSignal parameters to activate as targeting
screen_idsNoSpecific screens to activate on (optional, defaults to all partner screens)
signal_typeYesType of signal to activate (e.g., "audience", "venue", "behavior")
destinationsNoWhere to push activated segments
signal_agent_segment_idNo

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries behavioral weight and reveals non-obvious behavior: activation keys expire in 24 hours, IAB segments are emitted only when registered IDs are supplied explicitly, and free-form labels remain custom parameters. It also lists return fields. It does not disclose idempotence, overwrite semantics, or permission requirements, but it provides substantial behavior beyond the schema.

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?

The description is organized into front-loaded purpose, WHEN TO USE, RETURNS, and EXAMPLE sections with no filler. Every section carries operational information, and the structure lets an agent scan it quickly.

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?

Given no output schema and no annotations, the RETURNS list and example materially help the agent understand the call's outcome and shape. The main gaps are that signal_type's other values (venue, behavior) and the destinations parameter are not addressed, so less canonical calls would rely on schema-only inference.

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 80%, so the baseline is 3. The description adds a concrete example mapping a natural-language income segment to iab_audience_segment_ids: ['68'], plus the rule that inferred labels are never auto-mapped. It also clarifies the role of screen_ids through the example, though destinations and other signal_type values are not discussed.

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 'Activate an audience signal for DSP targeting,' identifying a specific verb, resource, and use context. It further differentiates from siblings like get_signals and semantic_audience_search by stating it returns an activation_key token for referencing the activation.

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?

A dedicated WHEN TO USE section lists three concrete invocation contexts, including converting audience signals into targeting parameters and activating registered IAB segment IDs. It does not mention when not to use this tool or name alternative sibling tools, so it stops short of the strongest exclusion guidance.

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

B3.3/5.0
Disambiguation2/5

There are exact duplicates (get_task_status/tasks_get, list_tasks/tasks_list) and several overlapping analytics, attribution, and semantic search clusters (get_attention_metrics vs get_creative_attention vs get_social_attention; find_similar_moments vs semantic_search_observations; get_campaign_attribution vs get_multi_touch_attribution vs get_roas). Detailed descriptions help, but with 83 tools an agent will frequently struggle to pick the right one.

Naming Consistency3/5

Most tools follow a snake_case verb_noun pattern (list_devices, create_campaign, delete_webhook), but there are notable inconsistencies: list_* and get_* are used interchangeably for list operations, attention tools mix conventions (get_attention_metrics vs get_creative_attention vs get_social_attention), and the legacy tasks_get/tasks_list names break the established get_task_status/list_tasks pattern.

Tool Count1/5

83 tools is an extreme count for a single MCP server, spanning device management, sensing, campaigns, media buys, attribution, webhooks, billing, API discovery, and AdCP protocol concerns. This is a broad API surface dump rather than a focused tool set, and it would be far better split into several coherent servers.

Completeness2/5

Despite the enormous surface, core campaign lifecycle is incomplete: create_campaign explicitly tells the agent to use update_campaign to activate a campaign, but no update_campaign tool exists, and there are no list/delete campaign tools. Significant capabilities exist for analytics, attribution, and webhooks, but the primary advertising workflow has a dead end.

Resources