.mcp.json.example•1.06 kB
{
"mcpServers": {
"scout": {
"command": "/absolute/path/to/Scout/venv/bin/python3",
"args": [
"/absolute/path/to/Scout/src/scout/server.py"
],
"env": {
"SCOUT_DB_PATH": "~/.scout/db",
"SCOUT_MODEL": "sentence-transformers/multi-qa-mpnet-base-dot-v1"
}
}
}
}
// IMPORTANT: This is just an example. setup.sh will automatically generate
// a .mcp.json with the correct paths for your system.
//
// If you need to create this manually, replace:
// - /absolute/path/to/Scout → actual path from: pwd
// - python3 → venv python: /path/to/venv/bin/python3
//
// To get your actual path, run:
// cd Scout && pwd
//
// Environment variables (optional):
// - SCOUT_DB_PATH: Database location (default: ~/.scout/db)
// - SCOUT_MODEL: Embedding model (default: multi-qa-mpnet-base-dot-v1)
// Alternative models: all-MiniLM-L6-v2 (good balance), all-mpnet-base-v2 (best quality)
//
// Note: PYTHONPATH is NOT included because pip install -e . makes it unnecessary