@iris-eval/mcp-server 0.8.0 → 0.8.1
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.
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
7
7
|
<!-- Stop shipping agents on vibes is filled from .claims.json brand.tagline at build time (vite.config.ts) — never restate the tagline here. -->
|
|
8
8
|
<title>Iris — Stop shipping agents on vibes</title>
|
|
9
|
-
<script type="module" crossorigin src="/assets/index-
|
|
9
|
+
<script type="module" crossorigin src="/assets/index-BfMShR3p.js"></script>
|
|
10
10
|
<link rel="stylesheet" crossorigin href="/assets/index-D0cFfBqn.css">
|
|
11
11
|
</head>
|
|
12
12
|
<body>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iris-eval/mcp-server",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"description": "Stop shipping agents on vibes. Score every agent output for quality, safety, and cost.",
|
|
5
5
|
"mcpName": "io.github.iris-eval/mcp-server",
|
|
6
6
|
"type": "module",
|
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
"claims:check-hardcoded": "node scripts/claims/check-no-hardcoded.mjs",
|
|
34
34
|
"proof": "tsx proof/run.ts",
|
|
35
35
|
"proof:typecheck": "tsc -p proof/tsconfig.json",
|
|
36
|
+
"proof:review": "tsx proof/human-review.ts",
|
|
36
37
|
"llms:render": "node scripts/claims/render-llms.mjs",
|
|
37
38
|
"llms:check": "node scripts/claims/render-llms.mjs --check",
|
|
38
39
|
"proof:judge": "tsx proof/judge/run.ts",
|
package/server.json
CHANGED
|
@@ -6,12 +6,12 @@
|
|
|
6
6
|
"url": "https://github.com/iris-eval/mcp-server",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "0.8.
|
|
9
|
+
"version": "0.8.1",
|
|
10
10
|
"packages": [
|
|
11
11
|
{
|
|
12
12
|
"registryType": "npm",
|
|
13
13
|
"identifier": "@iris-eval/mcp-server",
|
|
14
|
-
"version": "0.8.
|
|
14
|
+
"version": "0.8.1",
|
|
15
15
|
"transport": {
|
|
16
16
|
"type": "stdio"
|
|
17
17
|
},
|
|
@@ -36,6 +36,55 @@
|
|
|
36
36
|
"format": "string",
|
|
37
37
|
"isSecret": false,
|
|
38
38
|
"name": "IRIS_LOG_LEVEL"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"description": "Directory for the database, custom rules and preferences (default ~/.iris)",
|
|
42
|
+
"isRequired": false,
|
|
43
|
+
"format": "string",
|
|
44
|
+
"isSecret": false,
|
|
45
|
+
"name": "IRIS_HOME"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"description": "Enables evaluate_with_llm_judge and verify_citations with an Anthropic model. Optional: the deterministic rules never need a key",
|
|
49
|
+
"isRequired": false,
|
|
50
|
+
"format": "string",
|
|
51
|
+
"isSecret": true,
|
|
52
|
+
"name": "IRIS_ANTHROPIC_API_KEY"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"description": "Enables evaluate_with_llm_judge and verify_citations with an OpenAI model. Optional: the deterministic rules never need a key",
|
|
56
|
+
"isRequired": false,
|
|
57
|
+
"format": "string",
|
|
58
|
+
"isSecret": true,
|
|
59
|
+
"name": "IRIS_OPENAI_API_KEY"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"description": "Hard cap on the worst-case cost of one judge or citation call (default 0.25)",
|
|
63
|
+
"isRequired": false,
|
|
64
|
+
"format": "string",
|
|
65
|
+
"isSecret": false,
|
|
66
|
+
"name": "IRIS_LLM_JUDGE_MAX_COST_USD_PER_EVAL"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"description": "Let verify_citations fetch URLs (off by default)",
|
|
70
|
+
"isRequired": false,
|
|
71
|
+
"format": "boolean",
|
|
72
|
+
"isSecret": false,
|
|
73
|
+
"name": "IRIS_CITATION_ALLOW_FETCH"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"description": "Start the dashboard alongside the server (same as --dashboard)",
|
|
77
|
+
"isRequired": false,
|
|
78
|
+
"format": "boolean",
|
|
79
|
+
"isSecret": false,
|
|
80
|
+
"name": "IRIS_DASHBOARD"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"description": "Dashboard port (default 6920); IRIS_PORT is the MCP HTTP transport port (default 3000)",
|
|
84
|
+
"isRequired": false,
|
|
85
|
+
"format": "number",
|
|
86
|
+
"isSecret": false,
|
|
87
|
+
"name": "IRIS_DASHBOARD_PORT"
|
|
39
88
|
}
|
|
40
89
|
]
|
|
41
90
|
}
|