@iris-eval/mcp-server 0.4.1 → 0.4.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iris-eval/mcp-server",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "description": "The agent eval standard for MCP. Score every agent output for quality, safety, and cost.",
5
5
  "mcpName": "io.github.iris-eval/mcp-server",
6
6
  "type": "module",
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.4.1",
9
+ "version": "0.4.2",
10
10
  "packages": [
11
11
  {
12
12
  "registryType": "npm",
13
13
  "identifier": "@iris-eval/mcp-server",
14
- "version": "0.4.1",
14
+ "version": "0.4.2",
15
15
  "transport": {
16
16
  "type": "stdio"
17
17
  },
@@ -1,111 +0,0 @@
1
- export declare const CLAIMS: {
2
- $schema: string;
3
- brand: {
4
- categoryName: string;
5
- coinedTerms: string[];
6
- npmPackage: string;
7
- publicRepoUrl: string;
8
- securityEmail: string;
9
- supportEmail: string;
10
- tagline: string;
11
- websiteUrl: string;
12
- };
13
- evalRules: {
14
- builtInCount: number;
15
- categories: string[];
16
- categoryCount: number;
17
- hallucinationMarkers: number;
18
- injectionPatterns: number;
19
- names: string[];
20
- piiPatterns: number;
21
- stubMarkers: string[];
22
- };
23
- generatedAt: string;
24
- generatedFromCommit: string;
25
- generatorVersion: string;
26
- llmJudgeTemplates: {
27
- count: number;
28
- names: string[];
29
- supportedModels: string[];
30
- supportedProviders: string[];
31
- };
32
- mcpTools: {
33
- annotations: {
34
- destructiveHintCount: number;
35
- openWorldHintCount: number;
36
- readOnlyHintCount: number;
37
- };
38
- count: number;
39
- names: string[];
40
- };
41
- release: {
42
- currentReleaseDate: string;
43
- currentReleaseVersion: string;
44
- nextPlannedScope: string;
45
- nextPlannedVersion: string;
46
- };
47
- schemaVersion: number;
48
- tests: {
49
- integration: {
50
- failed: null;
51
- passed: null;
52
- total: null;
53
- };
54
- playwrightE2E: {
55
- browsers: never[];
56
- failed: null;
57
- passed: null;
58
- total: null;
59
- };
60
- totalCombined: number;
61
- vitestDashboard: {
62
- failed: number;
63
- passed: number;
64
- total: number;
65
- };
66
- vitestRoot: {
67
- failed: number;
68
- passed: number;
69
- total: number;
70
- };
71
- };
72
- version: {
73
- dashboardPackage: string;
74
- initPackage: string;
75
- langchainPackage: string;
76
- mcpServer: string;
77
- websitePackage: string;
78
- };
79
- };
80
- export declare const VERSION_MCP_SERVER: string;
81
- export declare const VERSION_LANGCHAIN_PACKAGE: string | null;
82
- export declare const VERSION_WEBSITE_PACKAGE: string | null;
83
- export declare const VERSION_DASHBOARD_PACKAGE: string | null;
84
- export declare const TEST_COUNT_VITEST_ROOT: number | null;
85
- export declare const TEST_COUNT_VITEST_DASHBOARD: number | null;
86
- export declare const TEST_COUNT_INTEGRATION: number | null;
87
- export declare const TEST_COUNT_PLAYWRIGHT_E2E: number | null;
88
- export declare const TEST_COUNT_TOTAL: number | null;
89
- export declare const MCP_TOOL_COUNT: number;
90
- export declare const MCP_TOOL_NAMES: readonly string[];
91
- export declare const RULE_COUNT_BUILT_IN: number;
92
- export declare const RULE_CATEGORIES: readonly string[];
93
- export declare const RULE_CATEGORY_COUNT: number;
94
- export declare const RULE_NAMES: readonly string[];
95
- export declare const PII_PATTERN_COUNT: number | null;
96
- export declare const INJECTION_PATTERN_COUNT: number | null;
97
- export declare const HALLUCINATION_MARKER_COUNT: number | null;
98
- export declare const LLM_JUDGE_TEMPLATE_COUNT: number;
99
- export declare const LLM_JUDGE_TEMPLATE_NAMES: readonly string[];
100
- export declare const TAGLINE: string;
101
- export declare const CATEGORY_NAME: string;
102
- export declare const COINED_TERMS: readonly string[];
103
- export declare const WEBSITE_URL: string;
104
- export declare const PUBLIC_REPO_URL: string;
105
- export declare const NPM_PACKAGE: string;
106
- export declare const SUPPORT_EMAIL: string;
107
- export declare const SECURITY_EMAIL: string;
108
- export declare const CURRENT_RELEASE_VERSION: string | null;
109
- export declare const CURRENT_RELEASE_DATE: string | null;
110
- export declare const NEXT_PLANNED_VERSION: string | null;
111
- export declare const NEXT_PLANNED_SCOPE: string | null;
@@ -1,52 +0,0 @@
1
- // Truthbase reader — single import surface for facts about Iris.
2
- //
3
- // Source of truth: iris/.claims.json (regenerated from canonical artifacts
4
- // via `npm run claims:generate`). Surfaces import the named consts below
5
- // rather than hardcoding values inline.
6
- //
7
- // When a fact changes (a new test lands, a new MCP tool registers, the
8
- // version bumps), the regenerator updates .claims.json on the next commit
9
- // and every surface that imports from this reader updates simultaneously.
10
- // No drift.
11
- import claimsRaw from '../../.claims.json' with { type: 'json' };
12
- // Re-export the raw object for surfaces that need composite values.
13
- export const CLAIMS = claimsRaw;
14
- // Versions
15
- export const VERSION_MCP_SERVER = claimsRaw.version.mcpServer;
16
- export const VERSION_LANGCHAIN_PACKAGE = claimsRaw.version.langchainPackage;
17
- export const VERSION_WEBSITE_PACKAGE = claimsRaw.version.websitePackage;
18
- export const VERSION_DASHBOARD_PACKAGE = claimsRaw.version.dashboardPackage;
19
- // Tests
20
- export const TEST_COUNT_VITEST_ROOT = claimsRaw.tests.vitestRoot.total;
21
- export const TEST_COUNT_VITEST_DASHBOARD = claimsRaw.tests.vitestDashboard.total;
22
- export const TEST_COUNT_INTEGRATION = claimsRaw.tests.integration.total;
23
- export const TEST_COUNT_PLAYWRIGHT_E2E = claimsRaw.tests.playwrightE2E.total;
24
- export const TEST_COUNT_TOTAL = claimsRaw.tests.totalCombined;
25
- // MCP tools
26
- export const MCP_TOOL_COUNT = claimsRaw.mcpTools.count;
27
- export const MCP_TOOL_NAMES = claimsRaw.mcpTools.names;
28
- // Eval rules
29
- export const RULE_COUNT_BUILT_IN = claimsRaw.evalRules.builtInCount;
30
- export const RULE_CATEGORIES = claimsRaw.evalRules.categories;
31
- export const RULE_CATEGORY_COUNT = claimsRaw.evalRules.categoryCount;
32
- export const RULE_NAMES = claimsRaw.evalRules.names;
33
- export const PII_PATTERN_COUNT = claimsRaw.evalRules.piiPatterns;
34
- export const INJECTION_PATTERN_COUNT = claimsRaw.evalRules.injectionPatterns;
35
- export const HALLUCINATION_MARKER_COUNT = claimsRaw.evalRules.hallucinationMarkers;
36
- // LLM-judge templates
37
- export const LLM_JUDGE_TEMPLATE_COUNT = claimsRaw.llmJudgeTemplates.count;
38
- export const LLM_JUDGE_TEMPLATE_NAMES = claimsRaw.llmJudgeTemplates.names;
39
- // Brand
40
- export const TAGLINE = claimsRaw.brand.tagline;
41
- export const CATEGORY_NAME = claimsRaw.brand.categoryName;
42
- export const COINED_TERMS = claimsRaw.brand.coinedTerms;
43
- export const WEBSITE_URL = claimsRaw.brand.websiteUrl;
44
- export const PUBLIC_REPO_URL = claimsRaw.brand.publicRepoUrl;
45
- export const NPM_PACKAGE = claimsRaw.brand.npmPackage;
46
- export const SUPPORT_EMAIL = claimsRaw.brand.supportEmail;
47
- export const SECURITY_EMAIL = claimsRaw.brand.securityEmail;
48
- // Release
49
- export const CURRENT_RELEASE_VERSION = claimsRaw.release.currentReleaseVersion;
50
- export const CURRENT_RELEASE_DATE = claimsRaw.release.currentReleaseDate;
51
- export const NEXT_PLANNED_VERSION = claimsRaw.release.nextPlannedVersion;
52
- export const NEXT_PLANNED_SCOPE = claimsRaw.release.nextPlannedScope;