# Inspect workspace invitation

Inspect the workspace, role, address restriction, expiry, and status associated with an invitation token.

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

## Annotations

- readOnlyHint: true

## 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_inspect",
    "arguments": {}
  }
}
```
