Skip to main content
Glama

join_tenant_pool

Register a Swiss tenant in the Immoswipe Mieter-Pool so property managers see their search profile and contact them about matching units. WRITE operation with personal data: ONLY call after the user has EXPLICITLY agreed to join the pool. consent must be true. Typical flow: run check_rental_chances first, then offer the sign-up.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesFirst name
emailYesEmail for match notifications
phoneNoOptional phone number
roomsYes
scoreNoOptional tenant score from check_rental_chances
budgetYes
incomeNo
localeNoLanguage of the confirmation and verification emails
consentYesMust be true. Only set after the user explicitly agreed to join the Mieter-Pool, having been told that property managers will see their profile AND that an Immoswipe account is created as part of the sign-up.
locationYesDesired place/region
householdNo
last_nameNoOptional last name (derived from name if omitted)
timeframeNo
preferencesNoOptional amenity wishes from the conversation. Lowercase English feature keys: "balcony", "terrace", "dishwasher", "washing machine", "garage", "parking", "elevator", "garden", "view", "pets allowed", "wheelchair access", "new building", "old building", "quiet location", "floor heating", "air conditioner", "storage room", "fitness center", "swimming pool", "free wifi". exclude also accepts "ground_floor", "basement", "attic".
location_typeNo
search_radius_kmNoOptional search radius around the location in km, e.g. 15
workplace_addressNo

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries the full burden — it explicitly discloses 'WRITE operation with personal data' and the mandatory consent gate. This flags both the mutating nature and the privacy sensitivity of the operation. It doesn't mention post-registration side effects like account creation or confirmation emails, but the critical safety traits are disclosed.

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?

Three short sentences with zero fluff: purpose, then critical safety warning, then workflow. The most important information (write nature, explicit consent, consent=true) is front-loaded ahead of the flow guidance. Every sentence earns its place.

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

Completeness4/5

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

For a 17-parameter tool with no output schema, the description covers the essential decision factors: what the operation does, when to call it, the consent requirement, and the ordering relative to check_rental_chances. It doesn't describe return values or post-registration outcomes (confirmation emails, account creation) which the agent might need, but the critical prerequisites are all present.

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 coverage is 59%, so the description partially compensates by emphasizing that consent must be true and by tying the score parameter to the check_rental_chances flow. However, it doesn't clarify the undocumented parameters (rooms, budget, income, locale, household, timeframe, location_type, workplace_address) beyond what their enum names imply. It adds value on consent but leaves the coverage gap unfilled.

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 (register) with a clear resource (Swiss tenant in Immoswipe Mieter-Pool) and a concrete purpose (property managers see profile and contact about matching units). It clearly distinguishes from all sibling tools, which are GET/search operations — only check_rental_chances is related, and the description explicitly differentiates the registration from it.

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?

Provides explicit when-to-use guidance: 'ONLY call after the user has EXPLICITLY agreed to join the pool' and 'Typical flow: run check_rental_chances first, then offer the sign-up.' It names the relevant sibling (check_rental_chances), orders the flow, and states the consent precondition, leaving nothing to inference.

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

Each tool serves a clearly distinct function: searching listings, retrieving property details, finding similar/popular listings, checking availability, assessing rental chances, joining the tenant pool, and accessing FAQs/guides. No two tools overlap in purpose, and the workflow between check_rental_chances and join_tenant_pool is explicitly documented.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in lowercase snake_case. Most retrieval operations use the 'get_' prefix (get_faqs, get_guide, get_listing_detail), while search_guides and search_listings use 'search_', and the two non-retrieval operations use 'check_' and 'join_'. This consistency makes the API predictable and easy to navigate.

Tool Count5/5

With 10 tools, the server falls squarely in the well-scoped range (3-15). The tools cover discovery (search, popular, similar, detail), specialized assessment (rental chances), booking availability, tenant pool registration, and content retrieval (FAQs, guides) without unnecessary duplication or bloat.

Completeness4/5

The tool set comprehensively covers the tenant-facing workflow: searching properties, viewing details, checking availability, assessing rental chances, and optionally joining the tenant pool. Minor gaps exist in property management operations (e.g., no create/update/delete for listings) but these are out of scope for the platform's apparent consumer focus.

Resources