Skip to main content
Glama

households_webhooks_get_one

Fetch a single household webhook by its UUID to inspect its configuration, endpoint URL, or status for debugging or integration checks.

Instructions

Get One — Households: Webhooks. Get webhook. [GET /api/households/webhooks/{item_id}] Keywords: households_webhooks_get_one, households webhooks get one, get webhook, fetch webhook, read webhook, retrieve webhook, view webhook, show webhook, webhook, webhooks, households webhooks, households, get, fetch, read, retrieve, view, show, read-only, mealie.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
item_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.11

TDQS

C2.3/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full behavioral burden. It claims 'read-only' in the keyword list but says nothing about authentication requirements, error behavior for a missing or non-owned webhook, or what the returned webhook contains. For a tool with zero annotation coverage this is thin.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Roughly half the text is a comma-separated keyword dump ('get, fetch, read, retrieve, view, show, read-only, mealie') that adds no information for an agent. The two useful elements, the title line and the endpoint path, are buried in noise.

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

Completeness2/5

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

For a single-parameter read tool with no output schema and no annotations, the description should at least convey what a webhook record is and any access semantics. Instead it offers only the endpoint path and keyword padding, leaving the agent without the context needed to invoke it confidently.

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?

The single required parameter item_id has 0% schema description coverage, and the description adds no meaning beyond the endpoint placeholder. The schema supplies the uuid4 format, but nothing explains that item_id identifies the webhook to fetch or how to obtain it, so the description fails to compensate for the coverage gap.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description gives a clear verb+resource ('Get webhook') reinforced by the concrete endpoint path GET /api/households/webhooks/{item_id}, so the single-item fetch intent is understandable. However, 'Get One' and 'Get webhook' largely restate the tool name, and it never distinguishes this from siblings such as households_webhooks_get_all, update_one, or delete_one.

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

Usage Guidelines2/5

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

There is no statement of when to use this tool versus households_webhooks_get_all (list) or the other webhook CRUD siblings. The only hints are the endpoint path and the 'read-only' keyword, which imply retrieval but give no conditions, prerequisites, or exclusions.

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

Deploy Server

Other Tools