-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.55 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@iris-eval/mcp-server",
"version": "0.1.9",
"description": "The agent eval standard for MCP. Score every agent output for quality, safety, and cost.",
"mcpName": "io.github.iris-eval/mcp-server",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"iris-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"lint": "eslint src/ tests/",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run tests/integration/",
"version:check": "bash scripts/check-version.sh",
"version:sync": "node scripts/sync-versions.mjs",
"clean": "rm -rf dist coverage",
"seed:demo": "tsx scripts/seed-demo-data.ts",
"demo": "tsx scripts/demo.ts",
"postinstall": "echo \"\\n ✅ Iris installed — the agent eval standard for MCP\\n 📖 Docs: https://iris-eval.com\\n 🎯 Try the playground: https://iris-eval.com/playground\\n ⭐ Star us: https://github.com/iris-eval/mcp-server\\n\""
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"agent",
"ai-agent",
"evaluation",
"observability",
"tracing",
"llm",
"claude",
"agent-evaluation",
"ai-observability",
"pii-detection",
"cost-tracking",
"agent-eval",
"output-quality",
"quality-gate"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/iris-eval/mcp-server.git"
},
"homepage": "https://iris-eval.com",
"bugs": {
"url": "https://github.com/iris-eval/mcp-server/issues"
},
"files": [
"dist",
"LICENSE",
"README.md",
"server.json"
],
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"better-sqlite3": "^12.8.0",
"express": "^5.1.0",
"express-rate-limit": "^8.3.2",
"helmet": "^8.1.0",
"pino": "^10.3.1",
"safe-regex2": "^5.1.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/express": "^5.0.0",
"@types/node": "^25.5.2",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"@vitest/coverage-v8": "^4.1.1",
"eslint": "^10.2.0",
"prettier": "^3.0.0",
"tsx": "^4.0.0",
"typescript": "^5.7.0",
"vitest": "^4.1.1"
}
}