files_ingest
ActiveTool of io.github.saloprj/dialogbrain
declared in 1.17.0
Save and index a file into the knowledge base. Use this when the user asks to save, store, or remember a document. The file will be processed (OCR if needed) and indexed for future search.
Parameters schema
{
"type": "object",
"required": [
"file_id"
],
"properties": {
"tags": {
"type": "array",
"items": {
"type": "string"
},
"description": "Optional list of tags for categorization (e.g., ['presentation', 'dextrade'])."
},
"title": {
"type": "string",
"description": "Human-readable title for the file (e.g., 'Project Presentation', 'Q1 Report'). If not provided, uses original filename."
},
"file_id": {
"type": "integer",
"description": "ID of the file to ingest (from attachment_file_ids in context)."
},
"thread_id": {
"type": "integer",
"description": "Optional thread ID to associate the file with. If not provided, uses context thread."
},
"description": {
"type": "string",
"description": "Optional description of the file contents."
}
}
}Parent server
io.github.saloprj/dialogbrain
https://github.com/saloprj/dialogbrain-mcp
1/7 registries