@debatetalk/mcp 1.0.13 → 1.0.15
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 +4 -2
- package/README.md +3 -3
- package/package.json +1 -1
|
@@ -1,15 +1,17 @@
|
|
|
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.15",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "DebateTalk",
|
|
7
7
|
"email": "support@debatetalk.ai"
|
|
8
8
|
},
|
|
9
9
|
"userConfig": {
|
|
10
10
|
"api_key": {
|
|
11
|
+
"title": "DebateTalk API Key",
|
|
11
12
|
"description": "Your DebateTalk API key from console.debatetalk.ai/api-keys",
|
|
12
|
-
"
|
|
13
|
+
"type": "string",
|
|
14
|
+
"sensitive": false
|
|
13
15
|
}
|
|
14
16
|
},
|
|
15
17
|
"mcpServers": {
|
package/README.md
CHANGED
|
@@ -33,21 +33,21 @@ DebateTalk makes multiple AI models argue a question independently, challenge ea
|
|
|
33
33
|
|
|
34
34
|
**3. Set your API key:**
|
|
35
35
|
|
|
36
|
-
|
|
36
|
+
Get a key at [console.debatetalk.ai/api-keys](https://console.debatetalk.ai/api-keys), then add it to `~/.claude/settings.json`:
|
|
37
37
|
|
|
38
38
|
```json
|
|
39
39
|
{
|
|
40
40
|
"pluginConfigs": {
|
|
41
41
|
"debatetalk@debatetalk-mcp": {
|
|
42
42
|
"options": {
|
|
43
|
-
"
|
|
43
|
+
"api_key": "dt_your_key_here"
|
|
44
44
|
}
|
|
45
45
|
}
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
48
|
```
|
|
49
49
|
|
|
50
|
-
|
|
50
|
+
Then run `/reload-plugins` — the five DebateTalk tools are immediately available in your session.
|
|
51
51
|
|
|
52
52
|
---
|
|
53
53
|
|
package/package.json
CHANGED