You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+28Lines changed: 28 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -301,6 +301,34 @@ External sources are automatically monitored and updated in the background. The
301
301
302
302
---
303
303
304
+
## 🔌 Model Context Protocol (MCP) Integration
305
+
306
+
LocalRecall can be controlled via MCP (Model Context Protocol) through the [LocalRecall MCP Server](https://github.com/mudler/mcps/tree/master/localrecall) available in the [mcps repository](https://github.com/mudler/mcps).
307
+
308
+
The MCP server provides tools for:
309
+
- 🔍 **Search**: Search content in collections
310
+
- ➕ **Create Collection**: Create new collections
311
+
- 🔄 **Reset Collection**: Clear collections
312
+
- 📄 **Add Document**: Upload documents to collections
313
+
- 📋 **List Collections**: List all available collections
314
+
- 📁 **List Files**: List files in a collection
315
+
- 🗑️ **Delete Entry**: Remove entries from collections
316
+
317
+
### Quick Start with MCP
318
+
319
+
The MCP server can be configured to enable specific tools for security and flexibility:
320
+
321
+
```bash
322
+
docker run -e LOCALRECALL_URL=http://localhost:8080 \
0 commit comments