Revoke workspace invitation

Revoke an invitation so it can no longer be accepted. Requires owner or admin access.

workspace_invitation_revokeWorkspaceRead and write

Behavior

Read-only hint
Not declared
Destructive hint
True
Idempotent hint
Not declared
Open-world hint
Not declared

Parameters

NameTypeRequirementDescription
workspaceIdstringRequiredNo additional description.
invitationIdstringRequiredNo additional description.

Input JSON Schema

Generated from the registered input schema
{
  "type": "object",
  "properties": {
    "workspaceId": {
      "type": "string",
      "minLength": 1
    },
    "invitationId": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "workspaceId",
    "invitationId"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema"
}

Call shape

Use an MCP client rather than sending this JSON directly. The client handles protocol negotiation, sessions, and authentication.

Protocol request
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "workspace_invitation_revoke",
    "arguments": {}
  }
}