@iris-eval/mcp-server 0.1.5 → 0.1.7
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 +3 -2
- package/dist/config/defaults.js +1 -1
- package/dist/dashboard/assets/index-BwFrX6Zx.js +70 -0
- package/dist/dashboard/assets/index-C9BwWthL.css +1 -0
- package/dist/dashboard/index.html +2 -2
- package/dist/dashboard/routes/eval-stats.d.ts +3 -0
- package/dist/dashboard/routes/eval-stats.js +76 -0
- package/dist/dashboard/routes/evaluations.d.ts +3 -0
- package/dist/dashboard/routes/evaluations.js +15 -0
- package/dist/dashboard/routes/filters.d.ts +3 -0
- package/dist/dashboard/routes/filters.js +9 -0
- package/dist/dashboard/routes/health.d.ts +3 -0
- package/dist/dashboard/routes/health.js +25 -0
- package/dist/dashboard/routes/index.d.ts +6 -0
- package/dist/dashboard/routes/index.js +6 -0
- package/dist/dashboard/routes/summary.d.ts +3 -0
- package/dist/dashboard/routes/summary.js +8 -0
- package/dist/dashboard/routes/traces.d.ts +3 -0
- package/dist/dashboard/routes/traces.js +29 -0
- package/dist/dashboard/server.d.ts +10 -0
- package/dist/dashboard/server.js +65 -0
- package/dist/dashboard/validation.d.ts +75 -0
- package/dist/dashboard/validation.js +29 -0
- package/package.json +6 -6
- package/server.json +2 -2
- package/dist/dashboard/assets/index-CGWlxM5E.js +0 -127
- package/dist/dashboard/assets/index-zuWgVxsu.css +0 -1
package/README.md
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
# Iris — The Agent Eval Standard for MCP
|
|
2
2
|
|
|
3
|
-
[](https://glama.ai/mcp/servers/iris-eval/mcp-server)
|
|
4
4
|
[](https://npmjs.com/package/@iris-eval/mcp-server)
|
|
5
|
-
[](https://npmjs.com/package/@iris-eval/mcp-server)
|
|
6
|
+
[](https://github.com/iris-eval/mcp-server)
|
|
6
7
|
[](https://github.com/iris-eval/mcp-server/actions/workflows/ci.yml)
|
|
7
8
|
[](LICENSE)
|
|
8
9
|
[](https://github.com/iris-eval/mcp-server/pkgs/container/mcp-server)
|
package/dist/config/defaults.js
CHANGED
|
@@ -3,7 +3,7 @@ import { readFileSync } from 'node:fs';
|
|
|
3
3
|
import { homedir } from 'node:os';
|
|
4
4
|
const irisHome = join(homedir(), '.iris');
|
|
5
5
|
// Read version from package.json to avoid hardcoded drift
|
|
6
|
-
let pkgVersion = '0.1.
|
|
6
|
+
let pkgVersion = '0.1.7';
|
|
7
7
|
try {
|
|
8
8
|
const pkg = JSON.parse(readFileSync(new URL('../../package.json', import.meta.url), 'utf8'));
|
|
9
9
|
pkgVersion = pkg.version;
|