Waldur MCP Server

create_invitation

Invite users to project or organization by email

Args: scope_type: Whether to invite users to organization or project scope_name: Name of the organization or project to invite users to role: Role to assign to invited users emails: List of email addresses to invite extra_invitation_text: Custom message to include in the invitation

Input Schema

NameRequiredDescriptionDefault
emailsYes
extra_invitation_textNo
roleYes
scope_nameYes
scope_typeYes

Input Schema (JSON Schema)

{ "properties": { "emails": { "items": { "type": "string" }, "title": "Emails", "type": "array" }, "extra_invitation_text": { "default": "", "title": "Extra Invitation Text", "type": "string" }, "role": { "title": "Role", "type": "string" }, "scope_name": { "title": "Scope Name", "type": "string" }, "scope_type": { "enum": [ "customer", "project" ], "title": "Scope Type", "type": "string" } }, "required": [ "scope_type", "scope_name", "role", "emails" ], "title": "create_invitationArguments", "type": "object" }