@debatetalk/mcp 1.0.7 → 1.0.10
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 +11 -0
- package/README.md +16 -2
- package/package.json +1 -1
|
@@ -8,8 +8,19 @@
|
|
|
8
8
|
},
|
|
9
9
|
"userConfig": {
|
|
10
10
|
"DEBATETALK_API_KEY": {
|
|
11
|
+
"title": "DebateTalk API Key",
|
|
11
12
|
"description": "Your DebateTalk API key from console.debatetalk.ai/api-keys",
|
|
13
|
+
"type": "string",
|
|
12
14
|
"sensitive": true
|
|
13
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
|
+
}
|
|
14
25
|
}
|
|
15
26
|
}
|
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