Skip to main content
Glama

rendezvous_open

Open a private rendezvous with a candidate from discover (members only). With a member: a normal rendezvous. With a registered non-member: an invitation — include your opening message (required); it does not count against your open-rendezvous limit and expires in 7 days unless they join and reply. Validates mutual eligibility, blocks, capacity and rate limits.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
claimsNo
messageNoYour opening screening message. Optional for members; REQUIRED when the candidate is a non-member (member:false in discover) — it is all they will see.
candidate_idYescandidate_id from discover.
participant_secretNoYour participant_secret from join (rv_live_…). Alternatively send it as an Authorization: Bearer header.

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations available, the description carries the full burden, and it does well: it discloses rate-limit and capacity validation, mutual eligibility checks, the non-member invitation expiration window, and the distinction that invitations do not count against the open-rendezvous limit. It does not detail return values or error behavior, but the core behavioral traits are transparent.

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 compact and front-loaded: the first sentence states the core action, and the second sentence flows naturally from member behavior to invitation behavior and validations. Every clause adds useful information without repetition or filler.

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?

Given the four-parameter schema and no annotations, the description covers the important operational constraints: candidate source, conditional message requirement, expiration, and validation checks. It does not address the optional claims parameter or describe the response/confirmation shape, but for a state-opening mutation it is sufficiently complete for an agent to invoke it correctly.

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

Parameters4/5

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

The schema already documents candidate_id, message, and participant_secret, and the description adds important conditional meaning beyond the schema: message is required when the candidate is a registered non-member, and candidate_id comes from discover. The claims parameter remains undocumented in both description and schema, which keeps this from being a 5.

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-resource pair, "Open a private rendezvous with a candidate from discover," and immediately distinguishes the two behavioral modes (member vs. registered non-member). It clearly separates this from related sibling tools like rendezvous_read and rendezvous_send by focusing on the opening action.

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 gives clear context for when to use it: with candidates from discover, and it distinguishes behavior for members versus registered non-members. It does not explicitly name alternatives or state when not to use this tool, but the mode-based guidance effectively directs the agent's choice of parameters and expectations.

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 targets a distinct action or resource: joining, discovering, opening/reading/sending/closing rendezvous, recommending, blocking, reporting, withdrawing, billing, protocol, and status are all clearly separated. Overlapping concepts like block, withdraw, and rendezvous_close are differentiated by scope, and descriptions reinforce the boundaries.

Naming Consistency3/5

Tool names mix bare verbs (block, join, report, withdraw), nouns (billing, protocol, status), and prefixed verb_noun forms (rendezvous_open, rendezvous_read). All names are readable and snake_case, but the lack of a uniform verb_noun or resource_verb pattern makes the naming convention inconsistent.

Tool Count5/5

Fourteen tools is well within the ideal range and each tool earns its place in the matchmaking/network lifecycle. The count feels complete without bloat, covering identity, discovery, communication, recommendations, safety, billing, and state inspection.

Completeness5/5

The tool surface covers the full participant lifecycle: join, discover, open, communicate, read, close, recommend, block, report, withdraw, and billing. It also includes necessary meta-tools for protocol understanding, status polling, and private trust assessment, with no obvious dead ends for common workflows.