Skip to main content
Glama

add_hunch

Record a NEW hunch the person just confirmed in conversation — a custom axis with their answer, added directly to their model (visible, revisable, removable by them). OWNER-LEVEL trust required: OAuth as the owner, or the editToken. Only record what the person actually said — never invent or infer a hunch they didn't confirm. For situational axes name it 'When '. If they haven't answered yet, use suggest_question instead.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
byNoYour name, e.g. "claude" — recorded in the revision history.
nameYesShort axis name, e.g. "When plans change suddenly".
poleYesThe pole the person SAID fits them.
poleAYesPole A label.
poleBYesPole B label.
modelIdNo
editTokenNoThe model's edit key, if not connected via OAuth.
confidenceNo0.05–0.97; default 0.7 for a fresh self-stated answer.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okYes
noteYes
urlsYes
falsifierNo
patternIdYes
statementNo

TDQS

A4.9/5.0
Behavior5/5

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

Beyond the annotations (readOnly=false, openWorld=true, idempotent=false, destructive=false), it describes the mutation's effect on the model, visibility/editability/removability, and the auth path (owner OAuth or editToken). It also establishes data-fidelity constraints ('Never invent or infer a hunch they didn't confirm'). 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?

All five sentences carry distinct, decision-relevant information: purpose+effects, auth, data fidelity, naming, and the alternative tool. It is compact (~75 words) and front-loaded with the core purpose, with no filler or redundant content.

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 write tool with 8 parameters, this description covers the operational context fully: what qualifies as input, required authority, how to format names, and which sibling to use instead. Because an output schema exists, not detailing return values is acceptable. The only minor omission is not explicitly saying what happens if a hunch with the same name already exists, but idempotentHint=false and 'NEW' imply a new axis.

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?

With 88% schema coverage, the baseline is high, and the description adds value by prescribing the naming convention for situational axes ('When <situation>') and reinforcing the meaning of pole ('what the person SAID') and editToken (owner-level alternative). It doesn't address 'confidence' or 'by', but the schema already documents those well.

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 opening sentence clearly identifies the operation: recording a NEW hunch/custom axis that the person just confirmed, with key traits (visible, revisable, removable). It differentiates from siblings by emphasizing 'just confirmed' and explicitly names suggest_question as the alternative, so the agent knows exactly what this tool does and how it differs.

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?

States the core precondition ('just confirmed in conversation') and the authority requirement (OAuth as owner or editToken). It gives an explicit exclusion and alternative: 'If they haven't answered yet, use suggest_question instead' and forbids inventing/inferring unconfirmed hunches, providing clear when-to-use and when-not-to-use 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.1/5.0
Disambiguation4/5

Most tools are clearly distinct: add_hunch and suggest_question differ by confirmed vs. proposed; propose_refinement and apply_refinement differ by queued vs. direct. The only potential confusion is find_complementary_thinkers vs. find_matches, but their descriptions (famous thinkers vs. actual people) mitigate overlap.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (add, apply, find, propose, read, suggest), with no mixed conventions or vague verbs. The names are descriptive and predictable.

Tool Count5/5

Seven tools is well within the ideal range for a focused domain. Each tool serves a distinct core operation—reading, adding, suggesting, refining, and matching—so no tool feels redundant or excessive.

Completeness4/5

The tool surface covers the primary workflows: reading a model, adding confirmed hunches, suggesting questions, proposing/applying refinements, and finding complementary thinkers or people. Minor gaps exist—no explicit update/delete hunch tool, and pending proposals are not listable—but these may be intentionally delegated to the human hub.