llm-tools/config/claude_desktop_config.json
Gregory Gauthier 2de32fe1e6 refactor(paths): use relative paths in configs and launch scripts
- Update README.md to reflect relative path usage.
- Change MCP server commands in claude_desktop_config.json to relative paths.
- Modify launch scripts to use `cd "$(dirname "$0")"` and relative paths, removing OS-specific absolute prefixes.
2026-04-17 14:25:42 +01:00

28 lines
689 B
JSON

{
"mcpServers": {
"dicom-mcp": {
"command": "./mcps/dicom_mcp/run_dicom_mcp_server.sh"
},
"filesystem": {
"command": "zsh",
"args": ["./mcps/filesystem_mcp/launch_filesystem_mcp.sh"],
"env": {
"MCP_LOG_LEVEL": "debug",
"MCP_TRANSPORT_TYPE": "stdio"
}
},
"open-meteo-mcp": {
"command": "./mcps/open_meteo_mcp/run_open_meteo_mcp_server.sh"
},
"playwright-mcp": {
"command": "./mcps/playwright_mcp/launch_playwright_mcp.sh"
},
"selenium-mcp": {
"command": "./mcps/selenium_mcp/launch_selenium_mcp_server.sh"
}
},
"preferences": {
"quickEntryDictationShortcut": "capslock"
}
}