---
title: "create_collection"
description: "Create a new collection as a child of parent_uid."
sidebarTitle: "create_collection"
lastUpdated: "2026-09-23"
---

> **For AI agents:** the complete documentation index is at [llms.txt](/llms.txt). Append `.md` to any page URL for its markdown version.

{/* GENERATED FILE: do not edit by hand. Regenerate with: node scripts/generate.mjs */}

Create a new collection as a child of parent_uid.

<Info>
  **Writes data · Calls external systems.**
</Info>

## Parameters

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `acknowledge` | boolean | No | Reset edit budget after the user has approved further mutations |
| `name` | string | Yes | Name for the new collection |
| `operator` | string | Yes | Operator slug (supplies org-id) |
| `parent_uid` | string | Yes | Parent collection UID under which to create the new collection |

## Example arguments

Illustrative arguments an agent supplies when calling this tool:

```json
{
  "operator": "string",
  "parent_uid": "string",
  "name": "string"
}
```

## Description

```text
Consumes one slot of the per-session collections edit budget (default: 20). Pass acknowledge=true after a budget-exhaustion message to reset the counter.
```

## What's next?

<Columns cols={2}>
  <Card title="All MCP tools" icon="robot" href="/mcp/tools/overview">
    Browse the full tool reference by category.
  </Card>
  <Card title="Connect a client" icon="plug" href="/mcp/connect">
    Point Claude, Cursor, or Claude Code at the server.
  </Card>
</Columns>
