# Revoke workspace invitation

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

- Exact name: `workspace_invitation_revoke`
- Category: Workspace
- Required access: write
- Allowed agent roles: admin
- MCP endpoint: `https://api.funnels.akera.agency/`

## Annotations

- destructiveHint: true

## Input JSON Schema

```json
{
  "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

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