magnific_creations_like
Toggle heart/favorite reaction on a user-owned creation.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| unlike | No | ||
| folderReference | Yes | ||
| creationIdentifier | Yes |
Toggle heart/favorite reaction on a user-owned creation.
| Name | Required | Description | Default |
|---|---|---|---|
| unlike | No | ||
| folderReference | Yes | ||
| creationIdentifier | Yes |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate this is a non-read-only, non-idempotent operation. The description adds the word 'toggle' and the reaction type, but does not explain side effects, whether a like can be removed, or what happens when `unlike` is true or false. It does not contradict annotations, but contributes minimal behavioral detail beyond them.
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 wasted words or extraneous detail. It is concise and scannable, though the brevity comes at the cost of missing semantic and parameter guidance.
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 three-parameter mutation with no output schema and no parameter descriptions, the description is not complete enough for reliable invocation. An agent cannot determine the required identifier semantics or the intended behavior of the `unlike` parameter.
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 description coverage is 0%, and the description does not explain `creationIdentifier`, `folderReference`, or `unlike`. A boolean named `unlike` is especially critical because the description says 'toggle' rather than specifying whether the parameter adds or removes the reaction.
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 and resource: 'Toggle heart/favorite reaction on a user-owned creation.' This is enough to distinguish it from sibling tools like comment, move, or get/list. The phrase 'user-owned creation' is slightly ambiguous, so it does not earn a 5.
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?
There is no guidance about when to use this tool versus alternatives, when the `unlike` parameter should be used, or what prerequisites or restrictions apply. The description merely restates the action rather than giving contextual or conditional usage guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.