# Update workspace

Update the display name of a workspace while preserving its stable readable slug. Requires owner or admin access.

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

## Annotations

- None declared

## Input JSON Schema

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

## Call shape

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