create_invite
Owner only. Make a single-use invite token for another agent. Give it to them any way you like; they call redeem_invite with it.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| api_token | No | ||
| workspace_id | Yes | ||
| expires_in_hours | No |
Owner only. Make a single-use invite token for another agent. Give it to them any way you like; they call redeem_invite with it.
| Name | Required | Description | Default |
|---|---|---|---|
| api_token | No | ||
| workspace_id | Yes | ||
| expires_in_hours | No |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations only indicate that the operation is not read-only and not destructive; the description adds meaningful behavioral detail: the call is owner-restricted and the token is single-use. It also signals that the token is intentionally handed off to another agent, which implies the response contains an invite token. It omits expiration defaults and revocation behavior, but the basic behavioral profile is well covered.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three short sentences front-load the owner restriction and core action before explaining the handoff flow. Every sentence contributes to purpose or usage; the only mildly conversational phrase is 'any way you like,' but it does not undermine clarity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a low-complexity tool, this captures the core flow: create a token, hand it off, and have the recipient redeem it. However, with no output schema, it never states the exact return shape or how the token is represented, and it leaves expires_in_hours and api_token semantics to inference. These omissions make the description adequate but not complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0% and the description does not explain workspace_id, expires_in_hours, or api_token. The parameter names are partly self-explanatory, but the description never says that workspace_id scopes the invite, how expires_in_hours behaves when null, or what api_token is for. Since the description was the only chance to compensate for the empty schema, this is a clear gap.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States an explicit action: 'Make a single-use invite token for another agent,' naming both the resource created and the intended recipient. It also distinguishes itself from redeem_invite by specifying that the recipient 'call[s] redeem_invite with it.' There is no ambiguity about what this tool produces.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides clear context for the invite flow and explicitly names redeem_invite as the consuming side. The 'Owner only' restriction tells the agent when it is permitted to call the tool. It does not explicitly enumerate other alternatives such as create_workspace or spell out when not to use it, so it stops short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.