Fix Claude Desktop config for proper python execution

- Use full path to uv command for Claude Desktop
- Set correct working directory and Nomad server address
- Remove unnecessary PYTHONPATH since uv handles virtual env

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-05-31 11:00:15 +07:00
parent 4205a48c73
commit 896ef83dc5

View File

@ -1,11 +1,11 @@
{
"mcpServers": {
"nomad-mcp": {
"command": "python",
"args": ["/Users/nkohl/Documents/Code/nomad_mcp/mcp_server.py"],
"command": "/Users/nkohl/.local/bin/uv",
"args": ["run", "python", "mcp_server.py"],
"cwd": "/Users/nkohl/Documents/Code/nomad_mcp",
"env": {
"NOMAD_ADDR": "http://localhost:4646",
"PYTHONPATH": "/Users/nkohl/Documents/Code/nomad_mcp"
"NOMAD_ADDR": "http://pjmldk01.ds.meisheng.group:4646"
}
}
}