ai-consensus-connector 0.12.0 → 0.12.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.
Files changed (3) hide show
  1. package/README.md +11 -0
  2. package/index.js +1 -1
  3. package/package.json +21 -6
package/README.md CHANGED
@@ -78,3 +78,14 @@ Your key authenticates to your account and bills your plan (unlimited on your
78
78
  own keys, or prepaid credits). Keep it secret — and note that pasting the
79
79
  `--env` form above stores the key in your shell history; use your client's
80
80
  config file if that concerns you.
81
+
82
+ ## Open source, hosted service
83
+
84
+ This connector is open source under the [MIT license](LICENSE). It is a thin
85
+ client for the **paid, hosted AI Consensus service** — you bring your own
86
+ AI Consensus API key; the deliberation engine itself runs on our servers and
87
+ is not part of this repository. The MIT license covers this connector's code
88
+ only and grants no rights to the AI Consensus name or branding.
89
+
90
+ **Support boundary:** connector bugs and setup issues → [GitHub issues](https://github.com/TheStevenJohnstone/ai-consensus-connector/issues);
91
+ account, API-key or billing questions → support@ai-consensus.ai.
package/index.js CHANGED
@@ -34,7 +34,7 @@ function render(r) {
34
34
  return `Status: ${r?.status}`;
35
35
  }
36
36
 
37
- const server = new McpServer({ name: "ai-consensus", version: "0.12.0" });
37
+ const server = new McpServer({ name: "ai-consensus", version: "0.12.2" });
38
38
 
39
39
  server.tool(
40
40
  "consult_ai_consensus",
package/package.json CHANGED
@@ -1,15 +1,30 @@
1
1
  {
2
2
  "name": "ai-consensus-connector",
3
- "version": "0.12.0",
4
- "mcpName": "io.github.thestevenjohnstone/ai-consensus",
3
+ "version": "0.12.2",
4
+ "mcpName": "io.github.TheStevenJohnstone/ai-consensus",
5
5
  "description": "Make AI Consensus a standing review layer for your coding agent — Claude, GPT and Gemini answer independently, cross-examine each other, and return one recommendation plus the strongest dissent.",
6
6
  "type": "module",
7
- "bin": { "ai-consensus-connector": "index.js" },
8
- "files": ["index.js", "README.md"],
7
+ "bin": {
8
+ "ai-consensus-connector": "index.js"
9
+ },
10
+ "files": [
11
+ "index.js",
12
+ "README.md"
13
+ ],
9
14
  "dependencies": {
10
15
  "@modelcontextprotocol/sdk": "^1.0.0",
11
16
  "zod": "^3.23.8"
12
17
  },
13
- "engines": { "node": ">=18" },
14
- "license": "UNLICENSED"
18
+ "engines": {
19
+ "node": ">=18"
20
+ },
21
+ "license": "MIT",
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "git+https://github.com/TheStevenJohnstone/ai-consensus-connector.git"
25
+ },
26
+ "homepage": "https://ai-consensus.ai",
27
+ "bugs": {
28
+ "url": "https://github.com/TheStevenJohnstone/ai-consensus-connector/issues"
29
+ }
15
30
  }