A DXT‑packed Python MCP that uses uv as its runtime installs and runs fine from the command line (uv run main.py) but Claude Desktop*refuses to install the same package, reporting it as “incompatible.”
manifest.json
manifest.json excerpt
User has confirmed uv installation and can run the MCP with uv run main.py on the same system, but claude desktop won't let them install saying it's incompatible.
Expected behavior
- claude desktop install path/to/google_workspace_mcp.dxt should detect the python / uv runtime declared above and install without complaints—exactly as running uv run main.py does on the same machine.
Ref related issue here: taylorwilsdon/google_workspace_mcp#120
A DXT‑packed Python MCP that uses
uvas its runtime installs and runs fine from the command line (uv run main.py) but Claude Desktop*refuses to install the same package, reporting it as “incompatible.”manifest.json
manifest.jsonexcerpt{ "server": { "type": "python", "entry_point": "main.py", "mcp_config": { "command": "uv", "args": [ "run", "--directory", "${__dirname}", "python", "${__dirname}/main.py" ], "env": { // ... } } } }User has confirmed uv installation and can run the MCP with uv run main.py on the same system, but claude desktop won't let them install saying it's incompatible.
Expected behavior
Ref related issue here: taylorwilsdon/google_workspace_mcp#120