Skip to main content
Glama

get_playbook

Read-only

Fetch a Cobalt test playbook by name and follow it exactly. Use this when the user asks for a usability pass, QA run, first-time-user review, or a positioning/messaging audit and you don't already have the playbook text. Available: 'usability_pass' — a first-time-user usability audit (signs up, drives the product, finds friction); 'positioning_pass' — a positioning and messaging audit of the public site (read-only, fully autonomous); 'flow_pass' — walks a specific flow the user names (signup, checkout, invite) and reports what broke and what confused, including any email it sends. All deliver a shareable Cobalt review. Prefer this over fetching the playbook from a URL: it comes through the protocol complete, whereas web fetchers summarize it and a summarized playbook silently drops the instructions that make the run work.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlNoThe site to run it against, if you already know it.
nameYesPlaybook name, e.g. 'usability_pass'.

TDQS

A4.9/5.0
Behavior5/5

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

Annotations already mark readOnlyHint, and the description adds substantive behavior: follow the playbook exactly, positioning_pass is read-only and fully autonomous, flow_pass reports broken/confusing steps and emails sent, and all playbooks yield a shareable Cobalt review. No contradiction with annotations.

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?

Every sentence carries operational value: fetch instruction, trigger conditions, available playbook behaviors, shared outcome, and the URL-fetch pitfall. The primary action is front-loaded, and there is no fluff.

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 2-parameter read-only fetch tool with no output schema, the description explains trigger conditions, playbook semantics, execution expectations, and the outcome. It even warns against a common wrong approach (URL fetching), leaving little ambiguity.

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 lifts it by enumerating valid name values and what each playbook does (usability_pass, positioning_pass, flow_pass). It adds little beyond the schema for url, but the playbook semantics are the crucial parameter meaning.

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 ('Fetch a Cobalt test playbook by name'), names the resource, and instructs the agent to follow it exactly. The three named playbooks make its scope concrete, and it is clearly distinct from the review/inbox sibling tools.

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?

Explicitly says when to invoke: for usability pass, QA run, first-time-user review, or positioning/messaging audit when the playbook text is not already held. It also gives a when-not/preference rule: prefer this over URL fetching because web fetchers summarize and silently drop instructions.

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