@iris-eval/mcp-server 0.1.1 → 0.1.3
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 -3
- package/package.json +11 -2
- package/server.json +38 -64
package/README.md
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
[](LICENSE)
|
|
6
6
|
[](https://nodejs.org)
|
|
7
7
|
|
|
8
|
-
Iris is an open-source [Model Context Protocol](https://modelcontextprotocol.io/) (MCP) server that provides trace logging, quality evaluation, and
|
|
8
|
+
Iris is an open-source [Model Context Protocol](https://modelcontextprotocol.io/) (MCP) server that provides trace logging, quality evaluation, and cost tracking for AI agents. Any MCP-compatible agent framework can discover and invoke Iris tools.
|
|
9
9
|
|
|
10
|
-

|
|
11
11
|
|
|
12
12
|
## Quickstart
|
|
13
13
|
|
|
@@ -160,7 +160,7 @@ Start with `--dashboard` flag to enable the web UI at `http://localhost:6920`.
|
|
|
160
160
|
- [GitHub Issues](https://github.com/iris-eval/mcp-server/issues) — Bug reports and feature requests
|
|
161
161
|
- [GitHub Discussions](https://github.com/iris-eval/mcp-server/discussions) — Questions and ideas
|
|
162
162
|
- [Contributing Guide](CONTRIBUTING.md) — How to contribute
|
|
163
|
-
- [Roadmap](
|
|
163
|
+
- [Roadmap](docs/roadmap.md) — What's coming next
|
|
164
164
|
|
|
165
165
|
## License
|
|
166
166
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iris-eval/mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "MCP-native agent evaluation and observability server",
|
|
5
|
+
"mcpName": "io.github.iris-eval/mcp-server",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"main": "dist/index.js",
|
|
7
8
|
"types": "dist/index.d.ts",
|
|
@@ -26,11 +27,19 @@
|
|
|
26
27
|
},
|
|
27
28
|
"keywords": [
|
|
28
29
|
"mcp",
|
|
30
|
+
"mcp-server",
|
|
31
|
+
"model-context-protocol",
|
|
29
32
|
"agent",
|
|
33
|
+
"ai-agent",
|
|
30
34
|
"evaluation",
|
|
31
35
|
"observability",
|
|
32
36
|
"tracing",
|
|
33
|
-
"llm"
|
|
37
|
+
"llm",
|
|
38
|
+
"claude",
|
|
39
|
+
"agent-evaluation",
|
|
40
|
+
"ai-observability",
|
|
41
|
+
"pii-detection",
|
|
42
|
+
"cost-tracking"
|
|
34
43
|
],
|
|
35
44
|
"author": "",
|
|
36
45
|
"license": "MIT",
|
package/server.json
CHANGED
|
@@ -1,69 +1,43 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"description": "MCP-native agent evaluation and observability server",
|
|
5
|
-
"
|
|
6
|
-
|
|
7
|
-
"
|
|
8
|
-
"name": "@iris-eval/mcp-server",
|
|
9
|
-
"registry": "https://registry.npmjs.org"
|
|
10
|
-
},
|
|
11
|
-
"oci": {
|
|
12
|
-
"name": "ghcr.io/iris-eval/mcp-server",
|
|
13
|
-
"registry": "ghcr.io"
|
|
14
|
-
}
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "io.github.iris-eval/mcp-server",
|
|
4
|
+
"description": "MCP-native agent evaluation and observability server for AI agents",
|
|
5
|
+
"repository": {
|
|
6
|
+
"url": "https://github.com/iris-eval/mcp-server",
|
|
7
|
+
"source": "github"
|
|
15
8
|
},
|
|
16
|
-
"
|
|
17
|
-
|
|
18
|
-
"name": "log_trace",
|
|
19
|
-
"description": "Log an agent execution trace with spans, tool calls, and metrics"
|
|
20
|
-
},
|
|
9
|
+
"version": "0.1.3",
|
|
10
|
+
"packages": [
|
|
21
11
|
{
|
|
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
|
-
"default": "~/.iris/iris.db"
|
|
52
|
-
},
|
|
53
|
-
"IRIS_LOG_LEVEL": {
|
|
54
|
-
"description": "Log level: debug, info, warn, error",
|
|
55
|
-
"default": "info"
|
|
56
|
-
},
|
|
57
|
-
"IRIS_DASHBOARD": {
|
|
58
|
-
"description": "Enable web dashboard",
|
|
59
|
-
"default": "false"
|
|
60
|
-
},
|
|
61
|
-
"IRIS_API_KEY": {
|
|
62
|
-
"description": "API key for HTTP authentication (optional, recommended for production)"
|
|
63
|
-
},
|
|
64
|
-
"IRIS_ALLOWED_ORIGINS": {
|
|
65
|
-
"description": "Comma-separated list of allowed CORS origins",
|
|
66
|
-
"default": "http://localhost:*"
|
|
12
|
+
"registryType": "npm",
|
|
13
|
+
"identifier": "@iris-eval/mcp-server",
|
|
14
|
+
"version": "0.1.3",
|
|
15
|
+
"transport": {
|
|
16
|
+
"type": "stdio"
|
|
17
|
+
},
|
|
18
|
+
"environmentVariables": [
|
|
19
|
+
{
|
|
20
|
+
"description": "API key for HTTP authentication (optional, recommended for production)",
|
|
21
|
+
"isRequired": false,
|
|
22
|
+
"format": "string",
|
|
23
|
+
"isSecret": true,
|
|
24
|
+
"name": "IRIS_API_KEY"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"description": "SQLite database path",
|
|
28
|
+
"isRequired": false,
|
|
29
|
+
"format": "string",
|
|
30
|
+
"isSecret": false,
|
|
31
|
+
"name": "IRIS_DB_PATH"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"description": "Log level: debug, info, warn, error",
|
|
35
|
+
"isRequired": false,
|
|
36
|
+
"format": "string",
|
|
37
|
+
"isSecret": false,
|
|
38
|
+
"name": "IRIS_LOG_LEVEL"
|
|
39
|
+
}
|
|
40
|
+
]
|
|
67
41
|
}
|
|
68
|
-
|
|
42
|
+
]
|
|
69
43
|
}
|