All tools
ToolRead
Get library document
get_library_documentYou need source-backed evidence, quotes, snippets, or exact library text.
When to use it
You need source-backed evidence, quotes, snippets, or exact library text.
Typical workflow
Search chunks, read only the precise chunk or bounded text needed, cite ids.
What it returns
Source text, chunks, snippets, ids, and citation-ready context.
Avoid using it when
Prefer draft tools for article drafts and chunk tools for long evidence reads.
Advanced input contract
Agent hosts use this JSON Schema to validate the exact input shape.
View full registry notes
Read a Prism library document or note by id, capped by maxCharacters. Returns text and metadata for external AI research. Avoid when: Prefer draft tools for article drafts and chunk tools for long evidence reads.
View JSON Schema
{
"type": "object",
"properties": {
"documentId": {
"type": "string",
"format": "uuid"
},
"maxCharacters": {
"type": "integer",
"minimum": 500,
"maximum": 100000,
"default": 8000
}
},
"required": [
"documentId"
],
"additionalProperties": false
}