# Remove workspace avatar

Remove the custom avatar from a workspace and return to its initials. Requires owner or admin access.

- Exact name: `workspace_avatar_remove`
- 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
    }
  },
  "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_avatar_remove",
    "arguments": {}
  }
}
```
