Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| CACHE_PATH | No | Path where processed documents will be cached | |
| MISTRAL_API_KEY | Yes | Your Mistral AI API key for OCR processing |
Schema
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| read_pdf | Read a PDF document and return the complete OCRResponse as a dictionary. Returns the full OCR response including all pages, not just the first page. The response includes pages with markdown content, bounding boxes, and other OCR metadata. |
| read_pdf_text | Read a PDF document and return only the markdown text content from all pages. This is a simpler alternative to read_pdf that returns just the text content
without the full OCR metadata, which can be easier for agents to process. |