Skip to main content
Glama

verify_campaign_activation

LEGACY wallet flow — new integrations should use create_account and launch_campaign (API key + prepaid balance, no wallet). For NO_REWARD campaigns only. After you have paid the flat USDC activation fee (returned in activationRequired by create_campaign), call this with the payment transaction signature to launch the campaign LIVE. Invite emails are sent to all cohort participants automatically. This call is idempotent — safe to retry.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
campaignIdYesCampaign ID from create_campaign
txSignatureYesSolana transaction signature of your USDC activation fee payment to treasury
walletAddressYesYour Solana wallet public key (must match the campaign creator)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

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 the full behavioral burden and does well: it discloses that the call launches the campaign LIVE, sends invite emails automatically, and is idempotent/safe to retry. It does not detail failure modes or reversal options, but the key side effects are covered.

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?

Four compact sentences front-load the legacy constraint and alternative flow, then state precondition, action, side effects, and retry safety. Every sentence adds operational value and there is no padding.

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?

For a mutating tool with no annotations and no output schema, it covers prerequisites, campaign-type restriction, required arguments, side effects, and idempotency. It could additionally state what response or callback signals success, but an agent knows how to invoke it correctly.

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 already fully documents campaignId, txSignature, and walletAddress. The description reinforces that txSignature is from the activation fee payment and mentions activationRequired from create_campaign, adding modest context without needing to repeat parameter details.

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?

States a specific action: after paying the USDC activation fee, pass the transaction signature to launch a NO_REWARD campaign live. It explicitly frames itself as the LEGACY wallet flow and contrasts it with the create_account/launch_campaign path, making its role distinct from siblings.

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?

Gives explicit when-to-use: legacy wallet users, NO_REWARD campaigns, only after activationRequired fee is paid. It also tells new integrations to use create_account and launch_campaign instead, satisfying the when-not/alternative 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.

Resources