Skip to main content
Glama

GrowVib: Social Media Growth

recommend_service

Read-onlyIdempotent

Recommend which plan option to order for a service, a quantity, an audience and a preference. Returns one recommended option plus the cheapest, highest-quality and fastest-listed alternatives. Each pick carries the price per 1000, the total for this quantity, the quantity range it accepts, its quality tier, typed axes such as country or watch length, the listed delivery speed and start window, a sensitive flag marking a deliberate product such as a negative reaction, and short reasons written for the buyer. Branch on the typed fields; the reasons are prose in the requested locale and state only what an option gives, so their absence is never a drawback. The response also says how many options were considered, how many fit, and why the rest fell out (rejected: audience_mismatch, quantity_below_min, quantity_above_max, dominated). It carries quoted_at and catalog_version: the version fingerprints the option data the answer came from, so if you recommend, ask the user, then order, re-call and compare catalog_version to know whether the card changed in between. Prices are live at order time; place_order re-prices from the same data get_quote does, so treat quoted_at as when this answer was computed, not as a price hold. tradeoffs compares each alternative with the lead as data (price and total deltas, quality steps, listed speed ratio, start bucket delta, max quantity delta, plus gives and costs naming the dimensions it wins and loses on; null means one side lists nothing). Use it to CHOOSE and to explain a choice as what each option gives ("$18.60 less for one tier lower and twice the listed rate"); never present a pick to the user as a percentage more expensive than another. Prefer this over reasoning across every option from get_service. Identify the service by service_id (from search_catalog) OR by platform + goal (the deliverable, e.g. platform "youtube" and goal "short-views" or "followers"). Read-only: it places no order. Pass the returned option_id as service_option_id to get_quote and place_order.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
goalNoThe deliverable metric key (followers, likes, views, short-views, members, comments, ...). Used with platform when service_id is omitted.
localeNoLanguage of the option labels and the reasons: en (default), fa, ru, uz or id. The typed fields are locale-independent, so pass the user's language freely.
audienceNo"worldwide" (default) for untargeted delivery, or "<axis>:<value>" such as "country:usa" or "emoji:❤️". The response lists the audiences the service serves.
platformNoPlatform key (telegram, instagram, tiktok, youtube, ...). Used with goal when service_id is omitted.
priorityNo"balanced" (default), "cheapest", "quality" or "fastest": which pick leads. fastest ranks on the LISTED delivery rate then start window (the listing's own claims); when no eligible option lists either it falls back to balanced.
quantityYesThe quantity the user wants to order; every pick accepts it.
service_idNoThe service id from search_catalog. Optional when platform and goal are given.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.8/5.0
Behavior5/5

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

Annotations already declare readOnly, idempotent, and non-destructive, and the description aligns with that by saying 'Read-only: it places no order.' On top of that, it discloses subtle behaviors: quoted_at is not a price hold, place_order re-prices from the same data, reasons state only positive attributes so absence is never a drawback, and tradeoffs uses null when one side lists nothing.

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

Conciseness4/5

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

The description is long, but the tool is complex and has no output schema, so the density is justified. It front-loads the core output and then groups caveats and usage rules coherently, though a couple of clauses could be tightened without losing information.

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?

There is no output schema, so the description must carry return-value meaning, and it does: it enumerates returned fields, rejection reasons, quoted_at, catalog_version, tradeoffs deltas, and the sensitive flag. Given the seven parameters and five sibling tools, an agent has everything needed to invoke it correctly and interpret the result.

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 100%, so the baseline is 3, but the description adds meaningful cross-parameter semantics: service_id can be replaced by platform+goal, quantity must be accepted by every pick, and priority is defined in terms of LISTED delivery rate then start window with a fallback to balanced. This goes beyond the schema's per-parameter descriptions.

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 verb+resource ('Recommend which plan option to order') and details the output: one recommendation plus the cheapest, highest-quality and fastest-listed alternatives. It clearly differentiates from get_service by saying 'Prefer this over reasoning across every option from get_service' and by specifying the option_id hand-off to get_quote and place_order.

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?

It tells the agent exactly when to use this tool: to choose and explain a choice, and to avoid reasoning over every option from get_service. It also gives identification alternatives (service_id OR platform + goal), the follow-up workflow (re-call and compare catalog_version before ordering), and explicit prohibitions such as never presenting a pick as a percentage more expensive than another.

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