Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Capabilities
Features and capabilities supported by this server
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| logging | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_files | List files and folders in a container at a given path. |
| search_knowledge | Search within a container using semantic, keyword, or hybrid search. Returns relevant document chunks with scores. |
| delete_file | Delete a file from a container. This also deletes all associated chunks and vectors. |
| container_create | Create a new container for organizing files. Containers provide isolated vector indexes. |
| container_delete | Delete a container. MinIO containers must be empty first. Filesystem, S3, and AzureBlob containers just stop being indexed — underlying data is not deleted. |
| container_list | List all containers with their document counts. |
| bulk_upload | Upload multiple files to a container in one operation. Each file is parsed, chunked, embedded, and made searchable. Returns per-file results. |
| bulk_delete | Delete multiple files from a container in one operation. Returns per-file results. |
| upload_file | Upload a file to a container. The file will be parsed, chunked, embedded, and made searchable. Provide either 'content' (base64) or 'textContent' (raw text), not both. |
| container_stats | Get statistics for a container: document counts by status, chunk count, storage size, embedding model, and last indexed time. |
| get_document | Retrieve the full text content of a document by ID or path. For text files the original content is returned; for binary formats (PDF, DOCX, PPTX) the extracted text is returned. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |