@iris-eval/mcp-server 0.5.0 → 0.5.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.
package/README.md CHANGED
@@ -172,8 +172,9 @@ Iris is a standard stdio MCP server — one `npx @iris-eval/mcp-server` command,
172
172
  npm install -g @iris-eval/mcp-server
173
173
  iris-mcp --dashboard
174
174
 
175
- # Docker
176
- docker run -p 3000:3000 -v iris-data:/data ghcr.io/iris-eval/mcp-server
175
+ # Docker — two servers, two ports: 3000 = MCP HTTP transport,
176
+ # 6920 = dashboard (which also serves the POST /api/v1/traces ingest endpoint)
177
+ docker run -p 3000:3000 -p 6920:6920 -v iris-data:/data ghcr.io/iris-eval/mcp-server
177
178
  ```
178
179
 
179
180
  > **Tip:** Global install (`npm install -g`) stores traces persistently at `~/.iris/iris.db`. With `npx`, traces persist in the same location, but startup is slower due to package resolution.
@@ -287,7 +288,7 @@ When using HTTP transport, Iris includes:
287
288
 
288
289
  - API key authentication with timing-safe comparison
289
290
  - CORS restricted to localhost by default
290
- - Rate limiting (100 req/min API, 20 req/min MCP)
291
+ - Rate limiting (600 req/min dashboard API, 20 req/min MCP)
291
292
  - Helmet security headers
292
293
  - Zod input validation on all routes
293
294
  - ReDoS-safe regex for custom eval rules