find_dishes_by_ingredient
Find African dishes that use a specific ingredient or food.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ingredient | Yes | Ingredient or food to search for |
Find African dishes that use a specific ingredient or food.
| Name | Required | Description | Default |
|---|---|---|---|
| ingredient | Yes | Ingredient or food to search for |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are empty, so the description carries the full burden of behavioral disclosure. It only restates the core purpose and does not reveal how matching works, whether results are returned as a list, or whether there are any filtering or exact-match behaviors.
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, front-loaded sentence with no redundant words. It conveys the essential purpose efficiently.
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 simple one-parameter tool, the description is minimally viable, but it lacks guidance on matching behavior and return format. With no output schema and no annotations, a bit more context about what the agent can expect from the results would improve completeness.
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 ingredient parameter already has a clear description. The tool description adds the context that the search targets African dishes, but it does not add meaning beyond the schema for the parameter itself.
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 a specific verb ('Find'), a resource ('African dishes'), and the selection criterion ('use a specific ingredient or food'). This distinguishes it from sibling tools like find_dishes_by_country and find_dishes_by_region, which filter by different attributes.
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 the tool should be used when searching for dishes by an ingredient, but it does not explicitly state when not to use it or mention alternative tools. With multiple sibling search tools, the lack of explicit routing guidance leaves some ambiguity.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
rank_african_foods and search_african_foods have nearly identical descriptions and field lists, making their boundary unclear. find_dishes_by_country vs find_foods_by_country and find_foods_by_country vs find_foods_by_region also create overlapping selection paths, though the facet descriptions help somewhat.
All tools follow a consistent snake_case verb_noun pattern: find_X_by_Y for faceted lookups, list_african_X for enumerations, resolve_african_X for normalization, and search/rank/get for other operations. There are no mixed naming conventions or camelCase deviations.
Thirteen tools is within a reasonable range for a food and dish knowledge base. However, rank_african_foods and search_african_foods largely duplicate each other, and some find_* variants could be consolidated, so not every tool fully earns its place.
The set covers listing, faceted lookup, name resolution, and food search/ranking well, but dishes lack a general keyword search tool equivalent to search_african_foods. There is also no dish category filter, so agents cannot search across all dish metadata without enumerating the full list.