Skip to main content
Glama

UniAffitti Room Finder

Update rental request status

update_rental_request_status

Accept, review, reject, or cancel a UniAffitti rental request according to the authenticated user’s role.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
statusYes
request_idYes
available_fromNoYYYY-MM-DD; required when accepting.

TDQS

A3.9/5.0
Behavior3/5

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

Annotations already mark this as not read-only and not destructive, so the mutation nature is expected. The description adds role-based authorization context but does not disclose transition rules, side effects, or response behavior. It adds some value beyond annotations without contradicting them.

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, front-loaded sentence with no filler. Every phrase earns its place, with the key status verbs first and the role constraint at the end.

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 status-update tool with no output schema, the description is mostly adequate, but it omits conditional details like the need for available_from when accepting (though present in the schema) and specific role-to-status mappings. An agent could call it correctly in common cases, but edge cases like accepting without available_from may be missed if relying on the description alone.

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?

With only 33% schema description coverage, the description bears some responsibility for parameter meaning. It maps the status enum to human actions ('accept, review, reject, cancel') but does not explain request_id semantics or explicitly mention that available_from is required when accepting, though the schema does. The name and enum make request_id fairly self-evident, so the description provides moderate compensation.

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?

The description uses a specific verb ('Accept, review, reject, or cancel') and a specific resource ('UniAffitti rental request'), making the tool's purpose unmistakable. It clearly distinguishes itself from read-only and create siblings like list_my_requests and create_rental_request. The role-based clause adds useful scope.

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

Usage Guidelines4/5

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

The description conveys a clear context: an authenticated user changing a rental request status subject to their role. It does not explicitly name alternatives or state when not to use the tool, but the action is specific enough that an agent can infer when it applies. No misleading guidance is present.

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.7/5.0
Disambiguation3/5

Most tools are distinct by resource and action, but the search/catalog cluster is fuzzy: search_universities, search_cities, list_search_metadata, and list_university_campuses overlap in purpose. search_rooms and rank_room_matches also have a similar discovery role, making it easy to select the wrong tool without careful reading.

Naming Consistency5/5

All tool names follow a consistent snake_case verb_noun pattern, with verbs like add, list, get, search, create, update, and send clearly indicating the action. This makes the tool surface highly predictable and easy to navigate.

Tool Count4/5

20 tools is on the heavier side, but the count is justified by the broad scope: room search, comparison, ranking, favorites, rental requests, messaging, listing creation, and university catalog browsing. The set remains manageable because each tool maps to a distinct workflow step.

Completeness3/5

Core room-finding workflows are covered well: search, details, compare, favorites, requests, and messages. However, listing management is incomplete (create_listing has no update/delete) and messaging only supports sending a first message, with no tool for replying to an existing conversation, leaving notable dead ends.

Resources