Skip to main content
Glama

Activate Pro tier

commerce.activate_pro

Verify a Pro-tier x402 payment and unlock Pro quota limits for the agent. Call after commerce.pro_requirements and a completed USDC payment.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
agent_idNoAgent identity to grant Pro quota. Must match the requirements call.
payment_requiredYesPAYMENT-REQUIRED JSON returned by commerce.pro_requirements.
payment_signatureYesPAYMENT-SIGNATURE from the Pro-tier USDC payment.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

TDQS

A4.2/5.0
Behavior4/5

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

The description reveals that the agent will verify a payment and then change the agent's quota state, which is valuable because readOnlyHint=false only says the tool mutates, not what the mutation is. It adds a clear precondition and does not contradict annotations; more error or persistence detail would be helpful but is not missing enough to lower the score further.

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 two sentences long and all of it earns its place. The action is stated first, followed by a precise precondition and flow reference; there is no filler or repetition of the tool title.

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?

With a fully documented parameter schema, an output schema, and annotations covering mutation and idempotency, the description need only supply the workflow context. The description gives that context clearly. It omits error handling or exact return semantics, but those are either covered by the output schema or not essential for calling this tool 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?

The input schema already provides 100% coverage with descriptive explanations for all three parameters. The description adds context that the payment flow comes from commerce.pro_requirements and USDC, but the parameters themselves are already well-documented, so the schema carries the weight here.

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 states a specific action with concrete objects: 'Verify a Pro-tier x402 payment and unlock Pro quota limits for the agent.' This clearly distinguishes the tool from related siblings like commerce.pro_requirements and commerce.purchase_credits, telling the agent exactly what end state the tool produces.

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?

It gives an explicit call sequence: 'Call after commerce.pro_requirements and a completed USDC payment.' This tells the agent when in the workflow the tool belongs. It does not explicitly name when not to use it or compare it with alternatives, so it stops just short of full 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

A4/5.0
Disambiguation3/5

The namespaces help, but there is real overlap in purpose: city.check with x402.pay_and_fetch, city.sample with x402.probe, and multiple tools that verify a payment and then activate, credit, or settle something. The descriptions clarify which resource is being paid for, but tool names alone leave room for misselection.

Naming Consistency4/5

Nearly every tool uses a lower-case dotted namespace.action pattern, making the set easy to scan. Some command parts are inconsistent, though: x402.networks, pulse.base, and commerce.credits_requirements read as nouns rather than actions, so the style is mostly but not fully uniform.

Tool Count3/5

Nineteen tools is in the heavy range, and they span many subsystems: x402, city, commerce/quotas, swarm, ops, and Base network metrics. The number is not extreme, but the server feels like multiple product surfaces bundled under one MCP rather than a tightly scoped toolset.

Completeness4/5

The x402 lifecycle is well covered: discover, probe, pay, fetch, verify, sell, and settle, plus supportive commerce and city workflows. Notable gaps are refunds/quota-balance checks, seller resource update/removal, and invoice-like management for Stripe/card purchases, but none blocks the object workflows.