Skip to main content
Glama

get_workspace_invitation_link

Read-only

Creates a shareable invitation link for a workspace, specifying the recipient email and role (Admin, Editor, or Viewer). Returns the invitation ID and access URL.

Instructions

Generate a shareable invitation link for a workspace for a single email.

workspace_id: target workspace ID — get available IDs from list_workspaces()
role_id: 1 = Admin, 2 = Editor, 3 = Viewer
Returns the invitation ID and access link URL.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailYes
role_idYes
workspace_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.18

TDQS

A3.5/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false. The description says 'Generate' which might imply a side effect, but does not explicitly clarify that no invitation record is created. It also doesn't mention permissions or rate limits. The description adds minimal behavioral context beyond the annotations.

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 concise, with two short sentences and a clean parameter breakdown. It avoids unnecessary detail and front-loads the primary purpose. No redundant information.

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 simple read-only operation with three parameters, the description adequately covers the action, returns the invitation ID and link, and provides a cross-reference for workspace_id. It lacks information on edge cases (e.g., invalid email) but that is not critical for a straightforward link generator.

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?

Schema coverage is 0%, so the description is the sole source of parameter meaning. It explicitly explains workspace_id (with a reference to list_workspaces) and role_id (with enum-like values 1/2/3). The email parameter is only implied by 'for a single email' rather than explicitly described, but the intent is clear.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Generate a shareable invitation link') and the scope ('for a workspace for a single email'). It distinguishes from sibling tools by specifying 'workspace' and 'single email'. However, the verb 'generate' slightly conflicts with the tool name 'get', which could introduce ambiguity.

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

Usage Guidelines2/5

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

The description gives no explicit guidance on when to use this tool over alternatives like invite_to_workspace or get_invitation_link. It does provide a helpful hint to use list_workspaces() for workspace_id, but does not explain the selection criteria or trade-offs.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools