Skip to main content
Glama

Media Generator — Images, Videos & Audios

feedback

Save user feedback to the MultipleWords feedback API (POST /api/feedback). Call this only when a generation result has feedback_prompt.ready=true (the server asks after every 3 successful outputs and keeps asking until saved). Ask the user to pick a reaction and show the emojis: 😍 excellent, 😊 good, 😐 average, 😞 bad. Pass reaction (excellent|good|average|bad, or the emoji) and optional feedback comment text. If the user does not add a comment, omit feedback — the server stores the MCP name saifs_ai. After it is saved, the server waits for 3 more successful outputs before asking again. Do not invent a reaction. Do not send user_name, email, is_login, or app_id — those are injected server-side from the authenticated session. When showing the saved reaction, include the matching emoji.

Args: reaction: User reaction. One of excellent, good, average, bad, or the matching emoji: 😍 excellent, 😊 good, 😐 average, 😞 bad. feedback: Optional short comment from the user. If the user does not add a comment, leave this empty. The server then stores the MCP name saifs_ai. Do not send the generation result or the user's question here.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
feedbackNo
reactionYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Added

TDQS

A4.9/5.0
Behavior5/5

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

With no annotations, the description carries the full burden and does so well. It discloses the write operation, server-side authentication handling ('Do not send user_name, email, is_login, or app_id'), and the conditional behavior of omitting feedback, plus the expectation to keep asking until saved.

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 front-loaded with the trigger and API details, and the Args section reinforces the parameter semantics well. It is slightly redundant—the server-stores-saifs_ai behavior and omit-feedback instruction appear twice—but still structured and readable.

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

Completeness5/5

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

For a two-parameter mutation with an output schema, the description covers trigger conditions, parameter values, server behavior, and safety guidance. There is nothing an agent needs in order to select and invoke this tool correctly that is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, but the description fully defines 'reaction' (excellent|good|average|bad or matching emoji) and 'feedback' semantics, including when to omit it entirely. It also tells the agent what not to include, which the schema cannot express.

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

Purpose5/5

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

States a specific action, 'Save user feedback to the MultipleWords feedback API (POST /api/feedback)', with a clear resource and endpoint. Despite the generic name 'feedback', the description makes the tool's purpose unambiguous and distinct from the sibling generation/content tools.

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

Usage Guidelines5/5

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

Explicitly scopes invocation: 'Call this only when a generation result has feedback_prompt.ready=true' and explains the server cadence (every 3 successful outputs, keeps asking until saved). This gives an agent a precise trigger and tells it not to call the tool at other times.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources