Skip to content

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#

ParameterTypeRequiredDescription
namestringrequiredVault name
iconstringoptionalOptional icon identifier
colorstringoptionalOptional 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"
  }
}