MCPcopy Create free account
hub / github.com/IBM/mcp-cli / run_manual_tests

Function run_manual_tests

diagnostics/cli_command_diagnostic.py:251–269  ·  view source on GitHub ↗

Show manual tests the user can run.

()

Source from the content-addressed store, hash-verified

249
250
251def 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
272def main():

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected