Show manual tests the user can run.
()
| 249 | |
| 250 | |
| 251 | def run_manual_tests(): |
| 252 | """Show manual tests the user can run.""" |
| 253 | print("\n" + "=" * 50) |
| 254 | print("🔧 Manual Tests to Try") |
| 255 | print("=" * 50) |
| 256 | |
| 257 | manual_tests = [ |
| 258 | "uv run mcp-cli --help", |
| 259 | "uv run mcp-cli tools --config-file server_config.json", |
| 260 | "uv run mcp-cli servers --config-file server_config.json", |
| 261 | "uv run mcp-cli providers list", |
| 262 | "uv run mcp-cli models", |
| 263 | "uv run mcp-cli ping --config-file server_config.json", |
| 264 | "uv run mcp-cli chat --config-file server_config.json", |
| 265 | ] |
| 266 | |
| 267 | print("Try these commands manually:") |
| 268 | for i, test in enumerate(manual_tests, 1): |
| 269 | print(f" {i}. {test}") |
| 270 | |
| 271 | |
| 272 | def main(): |