(config_dir: Path, name: str)
| 64 | |
| 65 | |
| 66 | def _read_server(config_dir: Path, name: str) -> dict[str, Any]: |
| 67 | config = json.loads((config_dir / "claude_desktop_config.json").read_text()) |
| 68 | return config["mcpServers"][name] |
| 69 | |
| 70 | |
| 71 | def test_generates_uv_run_command(config_dir: Path): |
no outgoing calls
no test coverage detected