Skip to main content
Glama
answerhatch

answerhatch-mcp

Official
by answerhatch

Start the crawl

answerhatch_start_crawl

Start the crawl for a registered tenant once the TXT record is published. If verification isn't visible, get the record again and retry. Then poll status for asynchronous progress.

Instructions

Start the crawl for a registered tenant. Call it only after the TXT record from answerhatch_create_tenant is published. If the record is not visible yet the tool returns the record again with instructions to publish and retry: wait about a minute and call this tool again. The crawl is asynchronous, so poll answerhatch_status afterwards.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tenant_idYestenant id returned by answerhatch_create_tenant

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden. It discloses that the crawl is asynchronous, that it may return the record again with instructions, and that a retry after about a minute is expected. This is valuable behavioral context, though it doesn't mention side effects beyond starting a crawl.

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, front-loaded with the purpose, and every clause adds value. It efficiently covers prerequisites, retry behavior, and follow-up without wasted words.

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 one-parameter tool with no output schema, the description covers the full calling context: when to call, what to expect, how to handle the retry case, and what to do next. Nothing an agent needs is missing.

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 documents the single parameter with a description ('tenant id returned by answerhatch_create_tenant'), and schema coverage is 100%. The tool description adds no extra semantics about the parameter beyond referencing the sibling, so baseline 3 is appropriate.

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 ('Start the crawl') with a clear target ('for a registered tenant'), and it distinguishes itself from siblings by explicitly referencing create_tenant for prerequisites and status for follow-up. The verb and resource are unambiguous.

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 gives explicit sequencing guidance: call only after the TXT record is published, and poll status afterwards. It also provides a retry condition with a wait time. This is clear when-to-use and when-to-use-alternative guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.