You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See the [official installation guide](https://github.com/anthropics/claude-code?tab=readme-ov-file#get-started) for Windows and other installation methods.
For more installation options and documentation, see the [Linux MCP Server documentation](https://rhel-lightspeed.github.io/linux-mcp-server/).
64
72
65
-
### 4. Configure Judge LLM
66
-
67
-
MCPChecker uses an LLM to verify test results. Set these environment variables:
68
-
69
-
```bash
70
-
export JUDGE_BASE_URL="https://api.openai.com/v1"
71
-
export JUDGE_API_KEY="sk-your-key-here"
72
-
export JUDGE_MODEL_NAME="gpt-4o-mini"
73
-
```
74
-
75
-
**Why a judge LLM?** Testing AI agents requires flexible verification. Instead of exact string matching, we use an LLM to verify if the output is semantically correct.
76
-
77
-
For example, instead of checking for the exact string "Fedora Linux 43", the judge checks if the output "contains information about the operating system". This allows the test to pass even if the formatting varies, as long as the required information is present.
78
-
79
-
Each verification step includes a `reason` explaining what the judge is checking, which helps with debugging when tests fail.
80
-
81
73
## What Gets Tested
82
74
83
75
This quickstart tests two diagnostic tools from the Linux MCP Server:
0 commit comments