mcp-rubber-duck 1.1.0 → 1.1.1
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/CHANGELOG.md +8 -0
- package/package.json +2 -2
- package/server.json +49 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [1.1.1](https://github.com/nesquikm/mcp-rubber-duck/compare/v1.1.0...v1.1.1) (2025-09-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* update mcpName format for GitHub namespace ([0786914](https://github.com/nesquikm/mcp-rubber-duck/commit/078691426d54f6ddc4feac7ffd9c5f7fdc15ac34))
|
|
7
|
+
* update server.json name format for GitHub namespace ([fe866ff](https://github.com/nesquikm/mcp-rubber-duck/commit/fe866ffabdae8bfd066c809bc4c8e04a18562ec8))
|
|
8
|
+
|
|
1
9
|
# [1.1.0](https://github.com/nesquikm/mcp-rubber-duck/compare/v1.0.0...v1.1.0) (2025-09-17)
|
|
2
10
|
|
|
3
11
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-rubber-duck",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "An MCP server that bridges to multiple OpenAI-compatible LLMs - your AI rubber duck debugging panel",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"ai",
|
|
27
27
|
"rubber-duck"
|
|
28
28
|
],
|
|
29
|
-
"mcpName": "io.github.nesquikm
|
|
29
|
+
"mcpName": "io.github.nesquikm/rubber-duck",
|
|
30
30
|
"author": "nesquikm",
|
|
31
31
|
"license": "MIT",
|
|
32
32
|
"repository": {
|
package/server.json
CHANGED
|
@@ -1,8 +1,52 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.schema.json",
|
|
3
|
+
"name": "io.github.nesquikm/rubber-duck",
|
|
4
4
|
"description": "An MCP server that bridges to multiple OpenAI-compatible LLMs - your AI rubber duck debugging panel",
|
|
5
|
-
"
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
"status": "active",
|
|
6
|
+
"repository": {
|
|
7
|
+
"url": "https://github.com/nesquikm/mcp-rubber-duck",
|
|
8
|
+
"source": "github"
|
|
9
|
+
},
|
|
10
|
+
"version": "1.1.0",
|
|
11
|
+
"packages": [
|
|
12
|
+
{
|
|
13
|
+
"registry_type": "npm",
|
|
14
|
+
"registry_base_url": "https://registry.npmjs.org",
|
|
15
|
+
"identifier": "mcp-rubber-duck",
|
|
16
|
+
"version": "1.1.0",
|
|
17
|
+
"transport": {
|
|
18
|
+
"type": "stdio"
|
|
19
|
+
},
|
|
20
|
+
"environment_variables": [
|
|
21
|
+
{
|
|
22
|
+
"description": "OpenAI API key (starts with sk-)",
|
|
23
|
+
"is_required": false,
|
|
24
|
+
"format": "string",
|
|
25
|
+
"is_secret": true,
|
|
26
|
+
"name": "OPENAI_API_KEY"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"description": "Google Gemini API key",
|
|
30
|
+
"is_required": false,
|
|
31
|
+
"format": "string",
|
|
32
|
+
"is_secret": true,
|
|
33
|
+
"name": "GEMINI_API_KEY"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"description": "Groq API key (starts with gsk_)",
|
|
37
|
+
"is_required": false,
|
|
38
|
+
"format": "string",
|
|
39
|
+
"is_secret": true,
|
|
40
|
+
"name": "GROQ_API_KEY"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"description": "Default LLM provider to use",
|
|
44
|
+
"is_required": false,
|
|
45
|
+
"format": "string",
|
|
46
|
+
"is_secret": false,
|
|
47
|
+
"name": "DEFAULT_PROVIDER"
|
|
48
|
+
}
|
|
49
|
+
]
|
|
50
|
+
}
|
|
51
|
+
]
|
|
8
52
|
}
|