-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
69 lines (69 loc) · 2.51 KB
/
Copy pathserver.json
File metadata and controls
69 lines (69 loc) · 2.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.entropyvortex/ai-consensus-mcp",
"description": "Stdio MCP server exposing the Consensus Validation Protocol — multi-model debate with confidence-weighted scoring, disagreement detection, and an optional judge synthesizer. Generic `consensus` tool plus 13 task-tuned expert panels (architecture, code review, security red-team, ML research, decision support, incident postmortem, product strategy, research synthesis), an opt-in persistent project-memory layer, and a benchmarking CLI.",
"version": "0.12.0",
"repository": {
"url": "https://github.com/entropyvortex/ai-consensus-mcp",
"source": "github"
},
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "ai-consensus-mcp",
"version": "0.12.0",
"transport": {
"type": "stdio"
},
"runtimeHint": "npx",
"runtimeArguments": [
{
"type": "positional",
"name": "subcommand",
"value": "serve",
"description": "Run the MCP server (vs. the `install` subcommand)."
},
{
"type": "named",
"name": "--config",
"description": "Absolute path to your consensus.config.json (providers, participants, optional judge).",
"isRequired": true,
"format": "filepath"
}
],
"environmentVariables": [
{
"name": "GROK_API_KEY",
"description": "xAI API key. Required if your config declares an `xai` provider.",
"isRequired": false,
"isSecret": true
},
{
"name": "ANTHROPIC_API_KEY",
"description": "Anthropic API key. Required if your config declares an `anthropic` provider.",
"isRequired": false,
"isSecret": true
},
{
"name": "OPENAI_API_KEY",
"description": "OpenAI API key. Required if your config declares an `openai` provider.",
"isRequired": false,
"isSecret": true
},
{
"name": "GROQ_API_KEY",
"description": "Groq API key. Required if your config declares a `groq` provider.",
"isRequired": false,
"isSecret": true
},
{
"name": "CONSENSUS_CONFIG",
"description": "Fallback config path if --config is omitted.",
"isRequired": false,
"isSecret": false
}
]
}
]
}