source.delete
Permanently remove a source from a NotebookLM notebook. Use list_content to find the source ID or name before deletion.
Instructions
Delete a source from the current NotebookLM notebook.
You can identify the source to delete by either:
source_id: The unique identifier of the source
source_name: The name/title of the source (partial match supported)
Use list_content first to see available sources and their IDs/names.
WARNING: This action is irreversible. The source will be permanently removed from the notebook.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| source_id | No | The unique ID of the source to delete | |
| source_name | No | The name/title of the source to delete (partial match supported) | |
| notebook_url | No | Notebook URL. If not provided, uses the active notebook. | |
| session_id | No | Session ID to reuse an existing session |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| success | Yes | Whether the tool call succeeded. | |
| data | No | The tool payload on success. The exact shape depends on the tool. | |
| error | No | Human-readable error message, present only when success is false. |