converse-mcp-server 3.0.1 → 3.0.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.
- package/package.json +12 -12
- package/src/providers/codex.js +5 -2
- package/src/providers/copilot.js +4 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "converse-mcp-server",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.2",
|
|
4
4
|
"description": "Converse MCP Server - Converse with other LLMs with chat and consensus tools",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -93,29 +93,29 @@
|
|
|
93
93
|
".env.example"
|
|
94
94
|
],
|
|
95
95
|
"dependencies": {
|
|
96
|
-
"@anthropic-ai/claude-agent-sdk": "^0.3.
|
|
97
|
-
"@anthropic-ai/sdk": "^0.
|
|
98
|
-
"@github/copilot-sdk": "^1.0.
|
|
99
|
-
"@google/genai": "^2.
|
|
96
|
+
"@anthropic-ai/claude-agent-sdk": "^0.3.207",
|
|
97
|
+
"@anthropic-ai/sdk": "^0.111.0",
|
|
98
|
+
"@github/copilot-sdk": "^1.0.6",
|
|
99
|
+
"@google/genai": "^2.11.0",
|
|
100
100
|
"@lydell/node-pty": "1.2.0-beta.12",
|
|
101
101
|
"@mistralai/mistralai": "^2.4.1",
|
|
102
102
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
103
|
-
"@openai/codex-sdk": "^0.144.
|
|
103
|
+
"@openai/codex-sdk": "^0.144.2",
|
|
104
104
|
"ai": "^6.0.208",
|
|
105
105
|
"cors": "^2.8.6",
|
|
106
106
|
"dotenv": "^17.4.2",
|
|
107
107
|
"express": "^5.2.1",
|
|
108
|
-
"lru-cache": "^11.5.
|
|
108
|
+
"lru-cache": "^11.5.2",
|
|
109
109
|
"nanoid": "^5.1.16",
|
|
110
|
-
"openai": "^6.
|
|
110
|
+
"openai": "^6.46.0",
|
|
111
111
|
"p-limit": "^7.3.0",
|
|
112
|
-
"vite": "^8.1.
|
|
112
|
+
"vite": "^8.1.4"
|
|
113
113
|
},
|
|
114
114
|
"devDependencies": {
|
|
115
|
-
"@vitest/coverage-v8": "^4.1.
|
|
115
|
+
"@vitest/coverage-v8": "^4.1.10",
|
|
116
116
|
"cross-env": "^10.1.0",
|
|
117
|
-
"eslint": "^10.
|
|
117
|
+
"eslint": "^10.7.0",
|
|
118
118
|
"rimraf": "^6.1.3",
|
|
119
|
-
"vitest": "^4.1.
|
|
119
|
+
"vitest": "^4.1.10"
|
|
120
120
|
}
|
|
121
121
|
}
|
package/src/providers/codex.js
CHANGED
|
@@ -215,11 +215,14 @@ async function getThreadIdFromContinuation(
|
|
|
215
215
|
* Map tool-level reasoning_effort values to Codex SDK's ModelReasoningEffort.
|
|
216
216
|
* Tool enum: 'none' | 'minimal' | 'low' | 'medium' | 'high' | 'max'
|
|
217
217
|
* SDK enum: 'minimal' | 'low' | 'medium' | 'high' | 'xhigh'
|
|
218
|
+
*
|
|
219
|
+
* The SDK type still lists 'minimal', but the current GPT-5.6-based Codex
|
|
220
|
+
* backend rejects it (5.6 dropped the minimal tier), so 'low' is the floor.
|
|
218
221
|
*/
|
|
219
222
|
function mapReasoningEffort(effort) {
|
|
220
223
|
const mapping = {
|
|
221
|
-
none: '
|
|
222
|
-
minimal: '
|
|
224
|
+
none: 'low',
|
|
225
|
+
minimal: 'low',
|
|
223
226
|
low: 'low',
|
|
224
227
|
medium: 'medium',
|
|
225
228
|
high: 'high',
|
package/src/providers/copilot.js
CHANGED
|
@@ -36,6 +36,9 @@ const SUPPORTED_MODELS = {
|
|
|
36
36
|
// OpenAI models
|
|
37
37
|
// Bare `gpt-5.6` (and the legacy `gpt-5` shortcut) route to Sol, matching
|
|
38
38
|
// Copilot's own bare-alias behavior. Terra is the recommended balanced tier.
|
|
39
|
+
// `codex` and `gpt` point at the latest GPT tier (reachable only via the
|
|
40
|
+
// `copilot:` namespace — bare `codex` routes to the Codex provider and bare
|
|
41
|
+
// `gpt*` keyword-routes to OpenAI before Copilot's catalog is consulted).
|
|
39
42
|
'gpt-5.6-sol': {
|
|
40
43
|
modelName: 'gpt-5.6-sol',
|
|
41
44
|
friendlyName: 'GPT-5.6 Sol (via Copilot)',
|
|
@@ -47,7 +50,7 @@ const SUPPORTED_MODELS = {
|
|
|
47
50
|
supportsReasoningEffort: true,
|
|
48
51
|
timeout: 600000,
|
|
49
52
|
description: 'OpenAI GPT-5.6 Sol via Copilot subscription',
|
|
50
|
-
aliases: ['gpt-5.6', 'gpt-5'],
|
|
53
|
+
aliases: ['gpt-5.6', 'gpt-5', 'gpt', 'codex'],
|
|
51
54
|
},
|
|
52
55
|
'gpt-5.6-terra': {
|
|
53
56
|
modelName: 'gpt-5.6-terra',
|