# Create workspace

Create an Akera workspace. The authenticated collaborator becomes its owner.

- Exact name: `workspace_create`
- 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": {
    "name": {
      "type": "string",
      "minLength": 2,
      "maxLength": 80
    }
  },
  "required": [
    "name"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema"
}
```

## Call shape

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