> ## Documentation Index
> Fetch the complete documentation index at: https://docs.attention.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Snippets

> Create shareable clips from call recordings.

Snippets are time-bounded clips of a call recording. They're useful for highlighting key moments — objection handling, pricing reveals, competitive mentions — and sharing them with teammates or saving them to a library.

## Tools

### create\_snippet

<Note>Scope: `mcp:write`.</Note>

Create a shareable snippet from a call recording. Provide both `start_time` and `end_time` to clip a specific time range, or omit both to use the full recording. The snippet can optionally be added to a library folder.

<ParamField query="conversation_id" type="string" required>
  The call ID to create a snippet from.
</ParamField>

<ParamField query="user_uuid" type="string" required>
  UUID of the user who owns the snippet.
</ParamField>

<ParamField query="internal" type="boolean" required>
  Whether the snippet is internal-only (`true`) or shareable externally (`false`).
</ParamField>

<ParamField query="start_time" type="number">
  Start time in seconds. Omit both `start_time` and `end_time` to use the full recording. Cannot be negative.
</ParamField>

<ParamField query="end_time" type="number">
  End time in seconds. Must be greater than `start_time`. Omit both `start_time` and `end_time` to use the full recording.
</ParamField>

<ParamField query="title" type="string">
  Optional snippet title. Auto-generated when omitted.
</ParamField>

<ParamField query="notes" type="string">
  Optional notes to attach to the snippet.
</ParamField>

<ParamField query="notify_views" type="boolean">
  Whether to notify viewers when the snippet is opened. Default: `false`.
</ParamField>

<ParamField query="in_library" type="boolean">
  When `true`, adds the snippet to the library. Use `library_folder_path` to specify the folder.
</ParamField>

<ParamField query="library_folder_path" type="string">
  Library folder path when `in_library` is `true`. Omit for the root folder.
</ParamField>

<ParamField query="my_library" type="boolean">
  When `in_library` is `true`, set this to `true` to add the snippet to the user's personal library instead of the org library.
</ParamField>

**Returns:** A Markdown summary including the snippet ID, conversation ID, optional title, and the time range.

**Example prompt:** *"Create a clip from my call with Acme between 12:30 and 14:00, title it 'Pricing Reveal', and add it to the Sales Snippets library folder."*
