# Get workspace team

Get the member roster and invitation history for a workspace the authenticated collaborator can access. The workspaceId may be the readable slug returned by workspace_list or the internal id.

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

## Annotations

- readOnlyHint: true

## Input JSON Schema

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

## Call shape

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