# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml
startCommand:
type: stdio
configSchema:
# JSON Schema defining the configuration options for the MCP.
type: object
required:
- chromaDbPath
- backupsPath
properties:
chromaDbPath:
type: string
description: Path to ChromaDB storage.
backupsPath:
type: string
description: Path for backups.
commandFunction:
# A function that produces the CLI command to start the MCP on stdio.
|-
(config) => ({
command: 'python',
args: ['-u', 'src/mcp_memory_service/server.py'],
env: {
MCP_MEMORY_CHROMA_PATH: config.chromaDbPath,
MCP_MEMORY_BACKUPS_PATH: config.backupsPath,
PYTHONUNBUFFERED: '1'
}
})