feat: add local Qdrant-based memory MCP and dev setup

This commit is contained in:
2026-03-03 13:40:13 +01:00
parent 9a4a95feea
commit 5cf9922822
3 changed files with 30 additions and 0 deletions

16
docker-compose.mcps.yml Normal file
View File

@@ -0,0 +1,16 @@
services:
qdrant:
image: qdrant/qdrant:latest
container_name: qdrant-mcp
ports:
- "6333:6333"
- "6334:6334"
volumes:
- ./data/qdrant:/qdrant/storage
restart: unless-stopped
networks:
- mcp-network
networks:
mcp-network:
driver: bridge