Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| LOG_LEVEL | No | Logging level (DEBUG, INFO, WARNING, ERROR) | INFO |
| PYTHONPATH | No | Python module search path | /app |
| PYTHONUNBUFFERED | No | Disable Python output buffering | 1 |
| MCP_MEMORY_FORCE_CPU | No | Force CPU-only mode (0 or 1) | 0 |
| SIMILARITY_THRESHOLD | No | Threshold for similarity search (0.0 to 1.0) | 0.7 |
| MAX_RESULTS_PER_QUERY | No | Maximum number of results returned per query | 10 |
| MCP_MEMORY_CHROMA_PATH | No | Path to ChromaDB storage directory | /app/chroma_db |
| MCP_MEMORY_BACKUPS_PATH | No | Path to backups storage directory | /app/backups |
| PYTORCH_ENABLE_MPS_FALLBACK | No | Enable MPS fallback for Apple Silicon (0 or 1) | 1 |
Schema
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| store_memory | Store new information with optional tags |
| retrieve_memory | Find relevant memories based on query |
| search_by_tag | Search memories by tags |