@inspectr/mcplab 0.2.0 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -18,6 +18,10 @@ MCPLab is a testing and evaluation framework for [MCP servers](https://modelcont
18
18
 
19
19
  Perfect for MCP server developers who want to ensure their tools work reliably across different AI models.
20
20
 
21
+ [![MCPLab](https://mcplab.inspectr.dev/screenshots/evaluation-results-assistance.png)](https://mcplab.inspectr.dev/)
22
+
23
+ Visit [mcplab.inspectr.dev](https://mcplab.inspectr.dev/) to learn more.
24
+
21
25
  ---
22
26
 
23
27
  ## ✨ Features
@@ -337,6 +341,9 @@ OPENAI_API_KEY=sk-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
337
341
  # Run all scenarios
338
342
  mcplab run -c mcplab/evals/eval.yaml
339
343
 
344
+ # Interactive mode (choose config + agents)
345
+ mcplab run --interactive
346
+
340
347
  # Run specific scenario
341
348
  mcplab run -c mcplab/evals/eval.yaml -s basic-test
342
349
 
@@ -350,6 +357,9 @@ Serve the web app and local API in one process:
350
357
 
351
358
  ```bash
352
359
  mcplab app --open
360
+
361
+ # Interactive startup (host/port/paths prompt + summary)
362
+ mcplab app --interactive
353
363
  ```
354
364
 
355
365
  Optional custom paths:
@@ -447,6 +457,9 @@ mcplab run -c mcplab/evals/eval.yaml --snapshot-eval
447
457
  ```bash
448
458
  # Regenerate HTML report from previous run
449
459
  mcplab report --input mcplab/results/evaluation-runs/20260206-212239
460
+
461
+ # Interactive run selection from recent runs
462
+ mcplab report --interactive
450
463
  ```
451
464
 
452
465
  ---