@debatetalk/mcp 1.0.8 → 1.0.11
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/.claude-plugin/plugin.json +10 -1
- package/.mcp.json +1 -1
- package/README.md +16 -2
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "debatetalk",
|
|
3
3
|
"description": "Run structured multi-model AI debates from your AI assistant. Multiple models argue independently, deliberate, and converge on a 4-part synthesis: Strong Ground, Fault Lines, Blind Spots, and Your Call.",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.10",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "DebateTalk",
|
|
7
7
|
"email": "support@debatetalk.ai"
|
|
@@ -13,5 +13,14 @@
|
|
|
13
13
|
"type": "string",
|
|
14
14
|
"sensitive": true
|
|
15
15
|
}
|
|
16
|
+
},
|
|
17
|
+
"mcpServers": {
|
|
18
|
+
"debatetalk-mcp": {
|
|
19
|
+
"command": "npx",
|
|
20
|
+
"args": ["-y", "@debatetalk/mcp"],
|
|
21
|
+
"env": {
|
|
22
|
+
"DEBATETALK_API_KEY": "${user_config.DEBATETALK_API_KEY}"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
16
25
|
}
|
|
17
26
|
}
|
package/.mcp.json
CHANGED
package/README.md
CHANGED
|
@@ -31,9 +31,23 @@ DebateTalk makes multiple AI models argue a question independently, challenge ea
|
|
|
31
31
|
/plugin install debatetalk@debatetalk-mcp
|
|
32
32
|
```
|
|
33
33
|
|
|
34
|
-
|
|
34
|
+
**3. Set your API key:**
|
|
35
35
|
|
|
36
|
-
|
|
36
|
+
Add your API key to `~/.claude/settings.json`:
|
|
37
|
+
|
|
38
|
+
```json
|
|
39
|
+
{
|
|
40
|
+
"pluginConfigs": {
|
|
41
|
+
"debatetalk@debatetalk-mcp": {
|
|
42
|
+
"options": {
|
|
43
|
+
"DEBATETALK_API_KEY": "dt_your_key_here"
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
Get a key at [console.debatetalk.ai/api-keys](https://console.debatetalk.ai/api-keys). Then run `/reload-plugins` — the five DebateTalk tools are immediately available in your session.
|
|
37
51
|
|
|
38
52
|
---
|
|
39
53
|
|
package/package.json
CHANGED