# Accept workspace invitation

Accept an invitation for the authenticated collaborator. Address-bound invitations enforce an exact email match.

- Exact name: `workspace_invitation_accept`
- Category: Workspace
- Required access: human
- Allowed agent roles: human only
- MCP endpoint: `https://api.funnels.akera.agency/`

## Annotations

- None declared

## Input JSON Schema

```json
{
  "type": "object",
  "properties": {
    "token": {
      "type": "string",
      "minLength": 32,
      "maxLength": 256
    }
  },
  "required": [
    "token"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema"
}
```

## Call shape

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