Skip to main content
Glama
djwmarcx

Better Mealie MCP

List Users By Id Ratings

list_users_by_id_ratings

Fetch the rated recipes for a specific user by providing their ID. Returns the user's recipe ratings to help track preferences and review history.

Instructions

Get user's rated recipes

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
accept-languageNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv3.20.1

TDQS

C2.8/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. 'Get' implies a read operation, but the description says nothing about authentication requirements, whether the target user must be the caller, or any filtering or pagination behavior.

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

Conciseness4/5

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

The description is very concise, front-loaded, and contains no filler. However, the brevity sacrifices useful explanatory context, so it is efficient but not optimally complete.

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?

The tool is simple, with only two parameters and an output schema, so return structure is covered elsewhere. Still, the description omits important context like how this differs from self-ratings endpoints and what accept-language controls, leaving an agent to infer too much.

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 0%, so the description must compensate, but it only weakly ties the required 'id' parameter to the notion of 'user's.' The optional 'accept-language' parameter is completely undocumented in the description.

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

Purpose4/5

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

The description uses a specific verb and resource: 'Get user's rated recipes.' This clearly identifies the operation, but it does not explicitly distinguish it from similar siblings like list_users_self_ratings or get_users_self_ratings_by_recipe, so it falls short of full differentiation.

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?

The description gives no guidance on when to use this tool versus alternatives. It does not mention that this endpoint targets a specific user by id, nor does it contrast with list_users_self_ratings for the current user.

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