containers-create
Create a new container (folder) for organizing notes. Required: name (string). Optional: description (string), negative_space (string — what does NOT belong in this folder, so notes can be routed away from it), parent_id (integer or null) for nesting inside another container — null or omitted creates it at the top level, team_id (integer) to create the container in a team instead of personal space. When team_id is set, parent_id (if provided) must belong to the same team. After creating, consider setting up LLM instructions with instructions-update.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Container name (required) | |
| team_id | No | Create container in this team instead of personal space. Omit it (or send null) for personal space. | |
| parent_id | No | Parent container ID for nesting, or null/omitted for a top-level container. Must belong to the same scope (personal or team) as the new container. | |
| description | No | Container description | |
| negative_space | No | What does NOT belong in this folder (e.g. 'No meeting notes, those go in Meetings'). Helps route notes away from the wrong place. |