Skip to main content
Glama

campaignstack_search_console_set_competitor

Idempotent

Add a competitor to this workspace's roster, or change an existing one's relationship or status. Confirming an entry is what makes a comparison page suggestable for it: being named by an AI engine shows a tool was mentioned, never that a buyer weighs it against this workspace. Relationship never controls whether a page is worth writing, only what it says: the versus query gets typed either way, and a page that strawmans an integration partner reads as dishonest to the people who use both.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesTool name, e.g. "HeyReach"
statusNoconfirmed (default) makes the entry count as a competitor, which is what lets a page be suggested for it. dismissed keeps the name out of suggestions permanently, so a tool an AI engine keeps naming stops coming back.
workspaceIdNo
relationshipYesrival = a buyer could pick it instead of you, so its page compares honestly. complement = you ship an integration with it, so its page argues composition rather than a scoreboard. substrate = the platform you run on or plug into, so its page explains the boundary.
blockedReasonNoSet to forbid publishing about this tool, with the reason (a partner, an employer, an ongoing deal). Pass null to clear an existing block; omit to leave it as it is.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

B3.4/5.0
Behavior4/5

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

Annotations already establish that this is non-read-only, non-destructive, and idempotent. The description adds meaningful behavioral nuance beyond those annotations: it explains that confirming an entry is what makes a comparison page suggestable and clarifies the semantic consequences of relationship values. This helps an agent understand the side effects of the operation without contradicting the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

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

The first sentence is an effective front-loaded summary, but the subsequent two sentences are long and dense, mixing conceptual explanation with behavioral guidance. The content is relevant, but it could be tightened. It is not as efficient as it could be, though it is not bloated with filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers the operation's conceptual model and ties into the schema well, but it misses guidance on when to use this tool compared to related competitor-watch tools. With no output schema, the description also does not hint at what the tool returns. For a mutation with 5 parameters and only 2 required, the description is adequate but not fully complete.

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 description coverage is high at 80%, so the baseline is 3. The description goes beyond the schema by explaining the real-world meaning of relationship values ('rival = could pick it instead of you', 'complement = integration', 'substrate = platform you run on') and the status concept ('confirmed' vs 'dismissed'). This adds value in understanding how to choose the right enum values.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the operation: 'Add a competitor to this workspace's roster, or change an existing one's relationship or status.' It names the resource (competitor roster) and the actions (add/change), which is specific and understandable. It does not explicitly distinguish itself from sibling tools like campaignstack_create_competitor_watch, but the focus on the search console competitor roster is different enough to orient an agent.

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

Usage Guidelines2/5

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

The description gives context about what the tool is for, but it never states when to use this tool versus a sibling such as campaignstack_create_competitor_watch or campaignstack_search_console_list_competitors. There are no explicit alternatives, exclusions, or conditions that would help an agent decide between this and related roster-management tools. Usage guidance is only implicit.

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

Many tools share the same verb prefix (create_, list_, update_, get_) across closely related resources, so pairs like add_lead_to_external_list vs add_lead_to_sequence, create_signal_agent vs create_signal_watch, and approve_review vs approve_content_post can be confused. The descriptions are unusually detailed and cross-referenced, which mitigates but does not eliminate the ambiguity inherent in a 282-tool surface.

Naming Consistency4/5

Virtually every tool follows the campaignstack_verb_noun snake_case pattern, which is highly predictable. Minor deviations exist: destructive operations mix remove_ and delete_ (remove_lead_list vs delete_campaign), AI generation uses both craft_ and generate_, and the seo_/search_console_ subdomains introduce a second prefix convention.

Tool Count1/5

282 tools is an extreme mismatch by any reasonable standard, exceeding the 50+ threshold by more than 5x. Even for a full B2B outreach platform, this surface is far too large and would be better consolidated into higher-level operations or grouped sub-servers.

Completeness4/5

The tool surface is impressively comprehensive, covering campaigns, workflows, leads, content, ads, SEO, integrations, billing, and more with CRUD-level depth. Minor gaps remain: no single-ICP getter, no direct pause/delete for search watches, and no explicit delete for ad campaigns (only archive via update).

Resources