All tools
ToolRead
Get library file chunk
get_library_file_chunkUse after chunk search or chunk listing when you need exact quoted evidence.
When to use it
Use after chunk search or chunk listing when you need exact quoted evidence.
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
You only need source names or folders; start with metadata lists.
Advanced input contract
Agent hosts use this JSON Schema to validate the exact input shape.
View full registry notes
Read one indexed chunk from a Prism library file by chunk id or zero-based chunk index for precise external AI citations. Use when: Use after chunk search or chunk listing when you need exact quoted evidence.
View JSON Schema
{
"type": "object",
"properties": {
"fileId": {
"type": "string",
"format": "uuid"
},
"chunkId": {
"type": "string",
"format": "uuid"
},
"chunkIndex": {
"type": "integer",
"minimum": 0
}
},
"required": [
"fileId"
],
"additionalProperties": false
}