Skip to main content
Glama

Configure a sourcing lane

gtm_configure_source
DestructiveIdempotent

Write a lane's settings — upload an account list, set the Post-discovery intent and anchors, change the job keywords, move a gate. MERGE semantics: only the fields you send change. Lists (companies, postUrls, competitors) REPLACE by default; pass listMode 'append' to add to what is there (deduped, case-insensitive). Caps: 100 companies, 25 posts, 25 anchors — what did not fit comes back in truncated. Unknown fields are refused. Saving creates the lane's row if it never had one (OFF, because configuring is not switching on), makes the lane due again immediately and resets its retry backoff; on account_list it also forgets the cached misses so unfound companies are looked up again. Pass on: true to switch it on in the same call — refused, with nothing saved, if the lane would still have nothing to run on. Nothing runs inside this call: an ON lane on an ACTIVE play runs on the next tick (≤5 min); otherwise use gtm_run_source. Read gtm_sources_reference for each field's meaning.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
onNoAlso switch the lane on/off. Omit to leave the switch alone.
keyYesWhich lane. people_search: LinkedIn people search compiled from the play's ICP (+ optional free-text keywords). | competitor_posts: Post discovery: Otto searches LinkedIn daily for posts matching an intent, judges each, and takes who engaged. | job_offers: Hiring signal: companies posting a role → the buyers inside them. | account_list: Companies you name (names, websites or LinkedIn page URLs) → Otto finds your buyers inside each. | post_engagers: RETIRED — folded into competitor_posts.postUrls. Still runs on rows that exist; do not configure it on new plays.
configYesThe fields to change. See gtm_sources_reference.
playIdYesThe play, from gtm_list_plays.
listModeNoHow list fields combine with the current value. Default replace.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.9/5.0
Behavior5/5

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

The description discloses extensive behavioral details beyond the annotations: MERGE semantics (only fields sent change), list replacement vs append behavior, caps (100 companies, 25 posts, 25 anchors), unknown-field refusal, side effects on save (creates row if none, makes lane due, resets retry backoff, forgets cached misses), and the refusal condition for `on: true` when nothing would run. It also clarifies that no execution happens inside the call. These add substantial context on top of the annotations (readOnlyHint false, destructiveHint true, idempotentHint true) without contradicting them.

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 dense but every sentence carries weight. It front-loads the purpose, then systematically covers merge semantics, list behavior, caps, unknown-field handling, save side effects, the `on` flag, execution behavior, and a pointer to the reference. There is no filler; each clause adds a distinct operational fact. The structure flows logically from core semantics to edge cases to routing.

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?

For a tool with 5 parameters and a nested config object, the description covers nearly every aspect an agent needs: merge semantics, caps, refusal conditions, side effects, execution timing, and a reference pointer for field meanings. It even hints at the response via `truncated`. Given the lack of an output schema, this description provides sufficient context to call the tool correctly and predict behavior. It is complete for the tool's complexity.

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. The description adds meaningful semantics beyond the schema: it explains MERGE behavior for config fields, specifies caps (e.g., max 25 posts/anchors, 100 companies) that are not in the schema, clarifies the default listMode and its interaction with `truncated`, and describes the `on` parameter's refusal condition. This supplements the schema descriptions, which are already detailed but lack the interaction rules. It earns a 4 for adding value beyond the schema.

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 specific verb+resource ('Write a lane's settings') and enumerates concrete actions (upload account list, set intent and anchors, change keywords, move a gate). It clearly distinguishes this from siblings like gtm_run_source by stating it writes configuration rather than running anything, and it mentions the reference tool gtm_sources_reference. This leaves no ambiguity about what the tool does.

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 description explicitly states when not to use it: 'Nothing runs inside this call: an ON lane on an ACTIVE play runs on the next tick (≤5 min); otherwise use gtm_run_source.' It also directs the agent to read gtm_sources_reference for field meanings, providing a clear alternative for deeper context. It explains when the `on` flag is appropriate and when it will be refused, giving actionable usage 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.