Skip to main content
Glama

signals.recommendations.feedback

Record why a recommendation was or was not a fit; this sharpens future recommendations and the persona

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
feedback_typesYesOne or more supported feedback tags
recommendation_idYesRecommendation id
interaction_sourceNoWhere the feedback came from in the UI or agent flow

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataYes
metaNo

TDQS

B3.3/5.0
Behavior3/5

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

Annotations already indicate it is a non-read-only, non-idempotent operation, but not destructive. The description adds a side-effect statement: 'this sharpens future recommendations and the persona', which discloses that it affects future behavior. However, it omits any mention of auth requirements, rate limits, or details about what happens to the recommendation itself (e.g., does it also dismiss it?), which with the low annotation bar leaves moderate value.

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

Conciseness5/5

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

The description is a single, well-structured sentence with no filler. It front-loads the purpose ('Record why') and adds a consequence clause that explains the value. Every word earns its place.

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?

For a simple mutation with high schema coverage and an output schema, the description covers the core action. However, it lacks guidance on how this relates to sibling tools (e.g., whether feedback should precede or replace dismiss), and it doesn't clarify the effect on the recommendation's state. This leaves an agent potentially unsure about the intended workflow.

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

Parameters3/5

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

Schema description coverage is 100%, so all parameters have descriptions. The description adds minimal specific parameter meaning—only that feedback_types captures 'why a recommendation was or was not a fit', which is already implied by the enum. The baseline of 3 is appropriate since the schema carries the primary semantic load.

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 clearly states the verb 'Record' and the resource 'why a recommendation was or was not a fit', indicating a mutation that logs reasoning. It distinguishes from sibling tools like dismiss or block by focusing on capturing reason rather than performing an action on the recommendation, though it doesn't explicitly name the difference.

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?

No explicit guidance is given on when to use this tool versus alternatives such as signals.recommendations.dismiss, block, or watch. The description implies it is for recording reasoning but does not state conditions, prerequisites, or when not to use it, leaving the agent to infer.

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.

TDQS

A3.6/5.0
Disambiguation4/5

The tools are largely distinct due to the domain-prefixed naming (inbox, jobs, signals, etc.) and detailed descriptions. While there is some overlap among inbox actions like acknowledge, apply_suggestion, and decline, the descriptions clarify each behavior. The signals and recommendations sub-groups also have clear boundaries, making misselection unlikely.

Naming Consistency5/5

All tools follow a consistent pattern of domain.entity.action or domain.action (e.g., inbox.list, jobs.interviews.add, signals.recommendations.dismiss). This uniform camelCase-with-dots convention makes the set highly predictable and easy to navigate.

Tool Count2/5

At 55 tools, the server far exceeds the 25-tool threshold for 'too many' as per the calibration. While the broad domain of job search management justifies numerous operations, the count is still overwhelming and could overwhelm agents or cause selection errors. Several signal-related tools could potentially be consolidated without compromising functionality.

Completeness5/5

The tool set covers the full lifecycle of job applications: inbox management (list, get, draft, send), job tracking (add, update, archive, delete), interviews (add, update, delete), offers (create, update, accept, decline, negotiation), and company signals (track, pause, recommend, block). There are no obvious missing operations for the core workflows.

Resources