Create library folder
create_library_folderYou need matching folders, sources, notes, recent changes, or library metadata.
When to use it
You need matching folders, sources, notes, recent changes, or library metadata.
Find candidate library objects before reading full evidence.
Metadata lists, ids, snippets, activity, and discovery hints.
Avoid using it when
You need exact quoted evidence from a long source; use chunk tools instead.
Advanced input contract
Agent hosts use this JSON Schema to validate the exact input shape.
View full registry notes
Create a private Prism Project workspace/folder for the authenticated user. A top-level Project automatically receives a title-based inbound Email address; nested folders return emailAddress: null. Automatic provisioning is part of Project creation under library:write, while explicit address management still requires email:manage. This tool cannot update, delete, publish, upload files, or import websites.
View JSON Schema
{
"type": "object",
"properties": {
"name": {
"type": "string",
"minLength": 1,
"maxLength": 120
},
"parentId": {
"type": [
"string",
"null"
],
"format": "uuid"
},
"parentPath": {
"type": "string",
"maxLength": 512,
"description": "Parent folder name or /-delimited path; an alternative to parentId."
},
"description": {
"type": "string",
"maxLength": 3000
},
"idempotencyKey": {
"type": "string",
"minLength": 1,
"maxLength": 200,
"description": "Required stable key for this exact folder-creation request. Reuse only to retry after an interrupted response."
}
},
"required": [
"name",
"idempotencyKey"
],
"additionalProperties": false
}