hooddue
Server Details
Restaurant fire-safety & service-interval tracking (NFPA 96/17A) — read-only demo tools.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
5 toolsexport_compliance_logAInspect
Export the full kitchen compliance log as CSV text (area, service, next due, status, chase history).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the transparency burden. It discloses the output format (CSV text) and content columns, but does not explicitly state safety traits like read-only behavior, permission requirements, or pagination limits. The lack of side-effect disclosure is noticeable but not misleading for a simple export operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that efficiently conveys the action, output format, and included columns without any fluff or redundancy. Every word adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (zero parameters, no output schema), the description is fully sufficient. It covers the purpose, output format, and data structure, leaving no critical gaps for an agent to invoke it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the schema coverage is 100% automatically. The description doesn't need to explain parameters, and the baseline for zero-parameter tools is 4. No additional parameter meaning is needed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'Export the full kitchen compliance log as CSV text' with specific columns listed. It distinguishes from sibling tools by focusing on exporting the entire log rather than summaries or filtered subsets.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'full kitchen compliance log' provides clear context for when to use this tool (when the entire log is needed in CSV format). It doesn't explicitly mention alternatives or exclusions, but the purpose is unambiguous enough for an agent to select it appropriately.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_compliance_summaryAInspect
Get the kitchen compliance summary: totals for tracked intervals, not scheduled, overdue with policy risk, due this week, and awaiting tags.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden of behavioral disclosure. It discloses the specific categories of totals returned, which gives insight into the tool's output. However, it does not explicitly state that this is a read-only operation, nor does it mention any potential side effects, limitations, or additional behavior. For a simple getter, the category enumeration is helpful but not exhaustive, so a score of 3 is appropriate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence that front-loads the primary action and resource, followed by a colon and a concise list of the summary categories. Every word earns its place, with no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (no parameters, no output schema), the description provides a reasonable level of completeness by listing the categories that the summary covers. It could be more complete by explaining how the totals are computed or what units are used, but for a summary getter, it is sufficiently clear for an agent to understand the tool's purpose and expected output.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema is empty, so there are no parameters to describe. The baseline for a tool with zero parameters is 4. The description adds no parameter information because none is needed, but it does not need to compensate for schema gaps.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with a specific verb ('Get') and resource ('kitchen compliance summary'), and enumerates the exact categories included (tracked intervals, not scheduled, overdue with policy risk, due this week, awaiting tags). This distinguishes it from sibling tools like list_overdue_services and get_services_due, which focus on listing specific services rather than aggregating compliance totals.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description does not provide any guidance on when to use this tool versus the sibling alternatives. It only states what the tool does, without mentioning contexts, prerequisites, or exclusions. For example, it doesn't say 'use this for a high-level overview instead of listing individual services.' This leaves the selection decision to the agent without explicit direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_services_dueAInspect
List services and permits due within the next N days (default 30), including hood cleanings, suppression inspections, and permit renewals.
| Name | Required | Description | Default |
|---|---|---|---|
| days | No | Look-ahead window in days (default 30). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It states what is listed and the default window, but does not mention return format, pagination, sorting, or any side effects. As a read-only listing tool, this is acceptable but not rich in additional 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence that front-loads the core action and resource, includes relevant examples, and avoids unnecessary words. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is a simple list operation with one optional parameter and no output schema. The description adequately conveys the scope and default behavior. It could be slightly more comprehensive by noting the return format or how it differs from 'overdue', but for a low-complexity tool it is generally complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and the single parameter 'days' already has a clear description including the default value. The tool description repeats the default and adds examples, but does not add significant semantic value beyond the structured schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'List' and clearly identifies the resource as 'services and permits due within the next N days', with examples (hood cleanings, suppression inspections, permit renewals). It distinguishes from sibling tools like list_overdue_services by the time window, making the purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for looking ahead at upcoming services due, and notes the default 30-day window. However, it provides no explicit guidance on when to prefer this over alternatives like list_overdue_services or search_services, nor does it state any exclusions or prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_overdue_servicesAInspect
List overdue fire safety and health compliance intervals — the ones that create insurance and inspection exposure right now. Most serious first.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must carry full behavioral disclosure. It states the tool lists overdue intervals and sorts by severity, which is useful. However, it does not mention permission requirements, return format, or what happens with no overdue items. It partially covers behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence with a clear verb first and no filler. The em-dash clause adds important context, and 'Most serious first' is a concise ordering instruction.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter list tool, the description conveys the domain (fire safety and health compliance), the filter (overdue), and the ordering. It falls short of describing the response fields, but given no output schema, this is a minor gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema defines zero parameters, and schema coverage is 100%. The description does not need to explain parameter semantics, so the baseline score of 4 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the verb 'List' with a specific resource 'overdue fire safety and health compliance intervals' and adds ordering 'Most serious first.' This clearly distinguishes it from siblings like get_services_due and search_services by emphasizing overdue and severity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'the ones that create insurance and inspection exposure right now' provides clear context for when to use this tool—when there are immediate compliance risks. It implies urgency and filtering, though it does not explicitly mention alternatives or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_servicesAInspect
Search kitchen compliance intervals by area, system, service type, or permit. Returns matching records with next due date and status.
| Name | Required | Description | Default |
|---|---|---|---|
| query | No | Text to match against area or service (case-insensitive; shorthand like "Ansul" or "liquor license" works). Omit to list everything. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. It clarifies this is a search returning records, implying a read-only operation, but does not explicitly state it has no side effects, nor mention authentication or data constraints. This is adequate for a simple search but could be more explicit.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two short sentences, front-loaded with the verb and resource, then a concise description of output. Every word adds value with no unnecessary elaboration.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter search tool with no output schema, the description adequately covers what it searches and what it returns (next due date, status). It could mention pagination or result limits, but given the simplicity, this is not a significant gap. It is complete enough for an agent to decide and invoke.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already describes the 'query' parameter with 100% coverage, including case-insensitivity, shorthand examples, and listing-all behavior. The tool description adds the list of searchable fields (area, system, service type, permit) which partially overlaps with the schema's 'area or service' mention, providing slight additional context but not substantial value beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states it searches kitchen compliance intervals by multiple criteria and returns specific fields. Verb 'Search' plus resource 'kitchen compliance intervals' makes purpose unambiguous. While it doesn't explicitly name sibling tools, its general search scope distinguishes it from specific export/summary/due-list siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use when needing to find compliance records by area, system, service type, or permit. However, it gives no explicit guidance on when to prefer this over alternatives like list_overdue_services or get_services_due, nor any exclusions. The context is present but not elaborated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user or an account that owns the GitHub organization, then choose Claim with GitHub.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Forklift & aerial-lift compliance records for warehouses — read-only demo tools.
Vendor document & expiry tracking for septic operators — read-only live demo board tools.
Subcontractor COI & paperwork tracking for general contractors — read-only demo tools.
Provider credentialing & payer-enrollment tracking for medical practices — read-only demo tools.
Related MCP Servers
- FlicenseAqualityCmaintenanceProvides read-only access to daily trading figures for multi-site restaurant groups, detecting anomalies in control blocks such as void rates and labor percentages to uncover subtle financial leaks.5
- AlicenseBqualityCmaintenanceRead-only MCP server that lets Claude, ChatGPT, or Cursor answer pest-business questions from your GorillaDesk account in plain English—looks up customers, invoices, schedules, and technicians without creating or changing data.19MIT
- AlicenseAqualityFmaintenanceRead-only ProofRelay MCP verifier for non-confidential evidence bundles. Exposes 22 public-safe tools, 11 resources, and 11 prompts for bundle integrity checks, receipt-chain review, checkpoint recommendations, MCP risk metadata review, and real-estate closing proof-pack readiness.5MIT
- AlicenseNot gradedqualityCmaintenanceProvides 46 read-only tools for MCP-capable AI agents to inspect firewall fleet posture, per-site live status, configuration history and diffs, and threat telemetry, with explicit provenance and data-status guarantees.MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool has a clearly distinct purpose: export full log, get summary, list upcoming due items, list overdue items, and search. The difference between due and overdue is explicitly stated, removing any ambiguity.
All tool names follow a consistent verb_noun pattern (export_compliance_log, get_compliance_summary, get_services_due, list_overdue_services, search_services), with clear verbs and descriptive nouns.
Five tools is well-scoped for a kitchen compliance monitoring server. Each tool covers a distinct query need without redundancy or bloat.
The tool surface fully covers the read-only compliance monitoring domain: full export, summary, upcoming due, overdue, and search. There are no obvious gaps for the stated purpose.