Skip to main content
Glama

UniAffitti Room Finder

Create a listing

create_listing

Create a UniAffitti listing draft for moderation. Listings intentionally keep university_id and campus_id NULL; location is stored independently from the university catalog.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityYes
titleYes
featuresNo
latitudeYes
longitudeYes
room_typeYes
descriptionYes
address_fullYes
country_codeYesISO 3166-1 alpha-2 country code.
price_monthlyYes
property_typeNoapartment
available_fromNoYYYY-MM-DD.
deposit_amountNo
location_labelNo
price_currencyNoEUR
property_floorYes
min_stay_monthsNo
occupancy_statusNoavailable

TDQS

A3.7/5.0
Behavior4/5

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

Annotations already indicate a write operation, but the description adds valuable behavioral context: the listing is only a draft, it is subject to moderation, and university_id/campus_id are intentionally kept NULL. This goes beyond the schema and annotations, helping the agent understand the side effects and data model.

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 two sentences, front-loads the core action, and adds one crucial non-obvious detail. There is no filler or repetition of schema information.

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

Completeness2/5

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

With 18 parameters, a nested object, no output schema, and minimal schema descriptions, the description is too sparse to fully prepare an agent. It does not explain moderation workflow, expected response, or the semantics of key parameters beyond a generic listing creation context.

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 only 11%, so the description carries a heavy burden for explaining parameters. It does not explain the meaning or expected format of most of the 18 fields, apart from the location-independence concept. The description does not compensate for the sparse schema documentation.

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 ('Create') and resource ('UniAffitti listing draft for moderation'), making it clear that this is a creation tool rather than a read or request tool. It also distinguishes this from create_rental_request by stating the result is a listing draft, not a request.

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

Usage Guidelines3/5

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

The description implies this tool is for creating listings that will be moderated, so an agent can infer when it applies, but it does not explicitly state when to avoid it or compare it to siblings like create_rental_request. The note about university_id and campus_id being intentionally NULL provides some operational guidance, but not explicit routing.

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