Skip to main content
Glama

email_review

Email a link to a finished review to the human who started the run, so they don't have to remember to come back for it — useful at the end of a long unattended study. Pass the review, its claim_token, and the human's email. IMPORTANT: we only send to a VERIFIED COBALT ACCOUNT address (this prevents the tool being used to send spam); if the address isn't a Cobalt account, the call is refused with a message telling the human to create a free account at cobaltcapture.com with that address first. The email contains only a link to the review — no text you provide — so ask the human for their account email and pass it verbatim.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailYesThe human's Cobalt account email. Must belong to a verified account, or the send is refused.
reviewYesThe review slug or URL from create_review.
claim_tokenYesThe claim_token from create_review (proves you created this review).

TDQS

A4.7/5.0
Behavior5/5

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

The description discloses important behaviors beyond the annotations: only verified Cobalt account addresses are accepted, unverified addresses cause refusal with a specific user message, and the email contains only a link with no user-provided text. This is exactly the kind of hidden-behavior information an agent needs to avoid failed calls and misaligned expectations.

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: purpose is front-loaded, the required arguments are stated clearly, and each subsequent sentence adds a necessary constraint or user action. No sentence is filler.

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?

For a tool with no output schema and sparse annotations, the description fully equips the agent to call it correctly: all three parameters are identified, the failure mode for invalid emails is spelled out, and the email-content limitation is explicit. Nothing needed for successful invocation is missing.

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 coverage is 100%, so the baseline is 3. The description adds practical value by emphasizing that the email must be the human's verified Cobalt account address, passed verbatim, and by grouping review, claim_token, and email as the required inputs. It does not deeply expand on review or claim_token semantics, but the schema already handles those.

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 names a specific action — emailing a review link to the human who started the run — and clearly distinguishes this from the sibling tools, none of which send email. It also ties the review to create_review via claim_token, making the resource obvious.

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 context for use ('at the end of a long unattended study') and explains the workflow: pass review, claim_token, and email. It does not explicitly name alternatives or state when not to use it, but the sibling set has no competing email tool, so the guidance is still strong.

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.4/5.0
Disambiguation5/5

Each tool targets a distinct resource and action: reviews (create/get/update/email/add content), inboxes (create/check), and playbooks (get). No two tools overlap in purpose, and descriptions reinforce the boundaries.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern (add_, check_, create_, email_, get_, update_). The verbs clearly indicate the operation and the nouns indicate the resource, making the API predictable.

Tool Count5/5

Nine tools is well-scoped for the server's purpose: covering review lifecycle, inbox support, and playbook retrieval without redundancy. Each tool earns its place in the QA/capture workflow.

Completeness4/5

The tool surface covers the full review lifecycle (create, append, retrieve, update, email) plus supportive inbox and playbook operations. Minor gaps like no explicit delete or list operations exist, but auto-expiry and share-link retrieval mitigate them.

Resources