crosscheck-mcp 0.1.2 → 0.1.4
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/dist/node-stdio.cjs +679 -571
- package/dist/node-stdio.cjs.map +1 -1
- package/dist/node-stdio.d.cts +1 -1
- package/dist/node-stdio.d.ts +1 -1
- package/dist/node-stdio.js +675 -559
- package/dist/node-stdio.js.map +1 -1
- package/dist/pricing.json +2 -1
- package/package.json +6 -5
package/dist/pricing.json
CHANGED
|
@@ -3,11 +3,12 @@
|
|
|
3
3
|
"currency": "USD",
|
|
4
4
|
"unit": "per_1k_tokens",
|
|
5
5
|
"updated_at": "2026-06-07",
|
|
6
|
-
"notes": "Prices reflect public list pricing per provider. cached_per_1k applies to prompt tokens served from prompt-cache (Anthropic) or input-cache (OpenAI) when supported. Update when providers change rates. Missing models fall back to cost=0 with estimated=true. 2026-06-07: removed decommissioned gemini-2.0-flash / gemini-2.0-flash-lite (Google returns 404) and replaced the low-tier lite model with gemini-2.5-flash-lite."
|
|
6
|
+
"notes": "Prices reflect public list pricing per provider. cached_per_1k applies to prompt tokens served from prompt-cache (Anthropic) or input-cache (OpenAI) when supported. Update when providers change rates. Missing models fall back to cost=0 with estimated=true. 2026-06-07: removed decommissioned gemini-2.0-flash / gemini-2.0-flash-lite (Google returns 404) and replaced the low-tier lite model with gemini-2.5-flash-lite. 2026-06-08: bumped the default Anthropic model to claude-opus-4-8. Kept gemini-2.5-pro as the Gemini default (gemini-3.1-pro-preview measured ~2.2x the cost at $2/$12 per M — output-token dominated by ~1.5k thinking tokens — so not worth it for a 1-of-4 panel voice)."
|
|
7
7
|
},
|
|
8
8
|
"anthropic": {
|
|
9
9
|
"claude-opus-4-5": { "prompt_per_1k": 0.015, "completion_per_1k": 0.075, "cached_per_1k": 0.0015 },
|
|
10
10
|
"claude-opus-4-7": { "prompt_per_1k": 0.015, "completion_per_1k": 0.075, "cached_per_1k": 0.0015 },
|
|
11
|
+
"claude-opus-4-8": { "prompt_per_1k": 0.015, "completion_per_1k": 0.075, "cached_per_1k": 0.0015 },
|
|
11
12
|
"claude-sonnet-4-5": { "prompt_per_1k": 0.003, "completion_per_1k": 0.015, "cached_per_1k": 0.0003 },
|
|
12
13
|
"claude-sonnet-4-6": { "prompt_per_1k": 0.003, "completion_per_1k": 0.015, "cached_per_1k": 0.0003 },
|
|
13
14
|
"claude-haiku-4-5": { "prompt_per_1k": 0.001, "completion_per_1k": 0.005, "cached_per_1k": 0.0001 },
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "crosscheck-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Multi-LLM MCP server: confer / debate / coordinate / audit / orchestrate across Anthropic + OpenAI + xAI + Gemini + Mistral + Groq + DeepSeek, with scoreboard-driven router, canary-leak detection, sandboxed shell verifiers, and a tier-aware cheap-mode picker. TypeScript implementation; no Python at runtime.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
@@ -39,13 +39,14 @@
|
|
|
39
39
|
"types": "./dist/node-stdio.d.ts",
|
|
40
40
|
"exports": {
|
|
41
41
|
".": {
|
|
42
|
+
"types": "./dist/node-stdio.d.ts",
|
|
42
43
|
"import": "./dist/node-stdio.js",
|
|
43
|
-
"require": "./dist/node-stdio.cjs"
|
|
44
|
-
|
|
45
|
-
|
|
44
|
+
"require": "./dist/node-stdio.cjs"
|
|
45
|
+
},
|
|
46
|
+
"./package.json": "./package.json"
|
|
46
47
|
},
|
|
47
48
|
"bin": {
|
|
48
|
-
"crosscheck-mcp": "
|
|
49
|
+
"crosscheck-mcp": "dist/node-stdio.js"
|
|
49
50
|
},
|
|
50
51
|
"sideEffects": false,
|
|
51
52
|
"files": [
|