--- license: mit title: SUMIT SERVER MCP sdk: docker emoji: 🚀 colorFrom: yellow colorTo: green short_description: MCP server for daily memory and task logging --- # Memory Dump MCP Server A Model Context Protocol (MCP) server for daily memory and task logging. Integrate into your AI agent to store and search memories, backed by Hugging Face Datasets. ## Available Tools | Tool | Description | Parameters | |------|-------------|------------| | `put_task_to_db` | Add a memory/task | `task: str`, `time_date: str` | | `get_task_from_db` | Get memories for a date | `today_date: str` | | `search_memory_by_keyword` | Search memories by keyword | `keyword: str` | ## Quick Start ```bash git clone https://github.com/rockerritesh/sumit-mcp-server.git cd sumit-mcp-server uv sync ``` Create a `.env` file: ```bash PORT=7860 HF_TOKEN=your_hf_token HF_DATASET_REPO=your_username/memory-dump ``` Run: ```bash uv run server.py ``` Server starts at `http://localhost:7860` with MCP endpoint at `/api/mcp/`. ## How It Works - Memories stored as JSONL in a **private** HF Dataset repo - Writes append to `data/metadata.jsonl` via `huggingface_hub` - Reads download and filter/search locally (instant for daily-memory-sized data) - Dataset repo is auto-created as private on first run ## Docker ```bash docker build -t memory-dump-mcp . docker run -p 7860:7860 -e HF_TOKEN=your_token memory-dump-mcp ``` ## License MIT