Search Documentation
Search across all documentation pages
create_vault
Create a new encrypted vault. This operation is idempotent by vault name — if a vault with the same name already exists, the existing vault is returned instead of creating a duplicate.
Parameters#
| Parameter | Type | Required | Description |
|---|---|---|---|
| name | string | required | Vault name |
| icon | string | optional | Optional icon identifier |
| color | string | optional | Optional color hex |
Returns#
The created (or existing) vault object with its ID, name, icon, and color.
Example#
json
{
"tool": "create_vault",
"arguments": {
"name": "Project Alpha",
"icon": "rocket",
"color": "#4A90D9"
}
}