crosscheck-mcp 0.1.0

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 ADDED
@@ -0,0 +1,81 @@
1
+ {
2
+ "name": "crosscheck-mcp",
3
+ "version": "0.1.0",
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
+ "keywords": [
6
+ "mcp",
7
+ "model-context-protocol",
8
+ "claude",
9
+ "claude-code",
10
+ "claude-desktop",
11
+ "cursor",
12
+ "llm",
13
+ "anthropic",
14
+ "openai",
15
+ "xai",
16
+ "gemini",
17
+ "multi-llm",
18
+ "panel",
19
+ "audit",
20
+ "orchestrate"
21
+ ],
22
+ "license": "SEE LICENSE IN LICENSE",
23
+ "author": "Frank Speiser <frank@metafide.io>",
24
+ "homepage": "https://github.com/fxspeiser/crosscheck-agent#readme",
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "git+https://github.com/fxspeiser/crosscheck-agent.git",
28
+ "directory": "servers/typescript"
29
+ },
30
+ "bugs": {
31
+ "url": "https://github.com/fxspeiser/crosscheck-agent/issues"
32
+ },
33
+ "type": "module",
34
+ "engines": {
35
+ "node": ">=18.17"
36
+ },
37
+ "main": "./dist/node-stdio.cjs",
38
+ "module": "./dist/node-stdio.js",
39
+ "types": "./dist/node-stdio.d.ts",
40
+ "exports": {
41
+ ".": {
42
+ "import": "./dist/node-stdio.js",
43
+ "require": "./dist/node-stdio.cjs",
44
+ "types": "./dist/node-stdio.d.ts"
45
+ }
46
+ },
47
+ "bin": {
48
+ "crosscheck-mcp": "./dist/node-stdio.js"
49
+ },
50
+ "sideEffects": false,
51
+ "files": [
52
+ "dist/**",
53
+ "LICENSE",
54
+ "README.md"
55
+ ],
56
+ "publishConfig": {
57
+ "access": "public"
58
+ },
59
+ "scripts": {
60
+ "build": "tsup",
61
+ "typecheck": "tsc --noEmit",
62
+ "test": "vitest run",
63
+ "test:watch": "vitest",
64
+ "lint": "tsc --noEmit",
65
+ "docs:usage": "tsx scripts/render-usage.ts",
66
+ "prepublishOnly": "npm run typecheck && npm test && npm run build"
67
+ },
68
+ "dependencies": {
69
+ "@modelcontextprotocol/sdk": "^1.29.0",
70
+ "@types/better-sqlite3": "^7.6.13",
71
+ "better-sqlite3": "^12.10.0",
72
+ "zod": "^3.25.76"
73
+ },
74
+ "devDependencies": {
75
+ "@types/node": "^22.10.0",
76
+ "tsup": "^8.3.5",
77
+ "tsx": "^4.22.4",
78
+ "typescript": "^5.6.3",
79
+ "vitest": "^4.1.8"
80
+ }
81
+ }