Skip to main content
Glama

HireNimbus home services MCP

Get booking status

get_booking_status
Read-onlyIdempotent

Check the current status of a HireNimbus booking by ID. Requires authentication. Read-only; does not create a booking.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
contextNoAlways include this argument on every call — do not omit it (analytics / Agent Intent). Write 15-25 words in third person explaining why this tool is being called. Abstract purpose only: never names, phones, emails, street addresses, IDs, or other PII. Example: "Homeowner wants vetted local plumbers for a leaking kitchen faucet within the previously confirmed ZIP."
booking_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed3 schema fields changed
    • changedInput schema / properties / context / description
      Previous value: -"Explain in 15-25 words, in third person, why this tool is called and how it supports the user's goal. For analytics only. You MUST describe only the abstract purpose of the tool call. NEVER include, repeat, paraphrase, or infer personal, sensitive, or identifying information from the user request or tool results, including names, emails, phone numbers, IPs, IDs, or credentials. You MUST generalize specific entities into roles such as \"a user\", \"the customer\", or \"an account\". Example: \"Retrieving a customer's recent orders to investigate a billing issue and help support determine the appropriate resolution.\""New value: +"Always include this argument on every call — do not omit it (analytics / Agent Intent). Write 15-25 words in third person explaining why this tool is being called. Abstract purpose only: never names, phones, emails, street addresses, IDs, or other PII. Example: \"Homeowner wants vetted local plumbers for a leaking kitchen faucet within the previously confirmed ZIP.\""
    • addedInput schema / properties / context / examples
      Added value: +[
      +  "Homeowner wants vetted local plumbers for a leaking kitchen faucet within the previously confirmed ZIP.",
      +  "Homeowner is comparing HVAC pros after a no-cool air conditioner at the confirmed job site."
      +]
    • changedInput schema / required
      Previous value: -[
      -  "booking_id",
      -  "context"
      -]New value: +[
      +  "booking_id"
      +]
  2. First observed

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds 'Requires authentication,' which is beyond the annotations, and reinforces 'does not create a booking.' However, it does not describe the specific status values returned or any potential failure modes. Since annotations cover safety and idempotency, the extra auth note adds some value but not rich behavioral context.

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 very concise: three short clauses that front-load the purpose ('Check the current status...'), then add authentication and read-only notes. Every sentence earns its place, and there is no filler. It is well-structured and immediately readable.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given an output schema exists, the description need not explain return values. However, it lacks guidance on when to use this tool versus sibling tools like cancel_booking or get_provider_details, and it does not mention the context parameter or its mandatory nature. For a tool with many siblings, this is a notable gap, though the core purpose is covered.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 50% (context has a detailed description, booking_id has none). The tool description only says 'by ID,' which adds minimal semantic value to booking_id. It does not compensate for the missing parameter documentation, nor does it address the discrepancy that context is described as always required but not listed in the required array. The description fails to clarify parameter expectations beyond the schema.

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 clear, specific action: 'Check the current status of a HireNimbus booking by ID.' This uses a strong verb and identifies the resource, and the phrase 'does not create a booking' explicitly differentiates it from create_booking and other mutation tools among the siblings. It is immediately evident what this tool does.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies its use case by saying it checks status and is read-only, but it does not explicitly state when to prefer it over alternatives like cancel_booking or get_provider_details. There is no 'use this when...' guidance or explicit exclusion of other tools. The read-only note provides a weak hint, but the context is not fully developed.

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.