Skip to main content
Glama
growsurf

GrowSurf MCP Server

Official

Update Program Design

growsurf_update_campaign_design
DestructiveIdempotent

Update a GrowSurf campaign's design settings, including participant avatar style, claim offer popup, sign-in copy, and payout confirmation page. Only the fields you specify are changed.

Instructions

Update the design configuration for your GrowSurf program, including participant avatars under participantAvatarStyle, referred-visitor content such as the Claim Offer Popup, participant sign-in copy under login, and payout-destination confirmation page copy under payoutDestinationConfirmation. participantAvatarStyle accepts CHARACTERS, INITIALS, ANIMALS, or GRADIENT. Only the fields you send are changed; anything you leave out is untouched (arrays replace wholesale). Fetch the configuration first, preserve starter content unless the user asked to change it, then pass just the fields you want to change under fields. Targets campaignId if you pass it, otherwise GROWSURF_CAMPAIGN_ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fieldsYes
campaignIdNoTarget program (campaign) id for this call. Defaults to GROWSURF_CAMPAIGN_ID when omitted. Pass the `id` returned by growsurf_create_campaign to configure or operate a program you just created, without restarting the server.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.12.2

TDQS

A4.7/5.0
Behavior5/5

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

The description goes beyond the annotations by detailing partial-update semantics ('Only the fields you send are changed; anything you leave out is untouched') and explicitly warning that arrays replace wholesale. This is valuable context given destructiveHint=true, and it also clarifies the campaign targeting fallback behavior.

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 efficient, front-loading the core purpose followed by key behavioral rules and parameter guidance. No sentence is wasted; the most important operational constraints are stated clearly and compactly.

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?

The description covers what the tool does, which fields matter, how partial updates and array replacement behave, which campaign is targeted, and the safe invocation pattern (fetch first, preserve starter content). Given the output schema and annotations, this is sufficient for an agent to correctly select and invoke the tool.

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 only 50%, and the required `fields` parameter is undocumented in the schema. The description compensates by explaining what fields can live inside it, including participantAvatarStyle options and content areas, and by explaining campaignId's fallback and usage for newly created campaigns.

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 clearly states it updates the design configuration for a GrowSurf program, naming specific subfields (participantAvatarStyle, login, payoutDestinationConfirmation) and the enum values for participantAvatarStyle. This distinguishes it from sibling update tools like growsurf_update_campaign, growsurf_update_campaign_options, or growsurf_update_program_resource by scoping it to design configuration.

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?

The description gives explicit operational guidance: fetch the configuration first, preserve starter content unless the user asked to change it, and pass only the fields to change. It also explains campaignId fallback behavior. It does not explicitly contrast with alternative update tools, but the design-specific scope makes the intended use clear.

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