claude_desktop_config.example.json•1.19 kB
{
"mcpServers": {
"scs-mcp": {
"comment": "Smart Code Search MCP Server",
"comment2": "For Windows/WSL users:",
"command": "wsl",
"args": [
"bash",
"-c",
"cd /path/to/your/scs-mcp && python3 -m src.server"
],
"comment3": "For macOS/Linux users, use this instead:",
"command_alt": "python3",
"args_alt": ["-m", "src.server"],
"cwd_alt": "/path/to/your/scs-mcp",
"env": {
"PYTHONPATH": "/path/to/your/scs-mcp",
"PROJECT_ROOT": "/path/to/your/code/project",
"comment": "Optional: Add API keys if using voice features",
"ELEVENLABS_API_KEY": "your-elevenlabs-api-key-here",
"OPENAI_API_KEY": "your-openai-api-key-here"
}
},
"comment4": "You can add multiple MCP servers here",
"another-mcp-server": {
"command": "node",
"args": ["server.js"],
"cwd": "/path/to/another/server"
}
},
"comment5": "Configuration file locations:",
"windows": "%APPDATA%\\Claude\\claude_desktop_config.json",
"macos": "~/Library/Application Support/Claude/claude_desktop_config.json",
"linux": "~/.config/Claude/claude_desktop_config.json"
}