converse-mcp-server 2.2.0 → 2.3.0
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/bin/converse.js +0 -0
- package/package.json +52 -52
- package/src/providers/openai.js +18 -4
package/bin/converse.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "converse-mcp-server",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0",
|
|
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",
|
|
@@ -11,6 +11,56 @@
|
|
|
11
11
|
"engines": {
|
|
12
12
|
"node": ">=20.0.0"
|
|
13
13
|
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"mcp",
|
|
16
|
+
"server",
|
|
17
|
+
"ai",
|
|
18
|
+
"chat",
|
|
19
|
+
"consensus",
|
|
20
|
+
"openai",
|
|
21
|
+
"google",
|
|
22
|
+
"gemini",
|
|
23
|
+
"grok"
|
|
24
|
+
],
|
|
25
|
+
"author": "Converse MCP Server",
|
|
26
|
+
"license": "MIT",
|
|
27
|
+
"homepage": "https://github.com/FallDownTheSystem/converse#readme",
|
|
28
|
+
"repository": {
|
|
29
|
+
"type": "git",
|
|
30
|
+
"url": "git+https://github.com/FallDownTheSystem/converse.git"
|
|
31
|
+
},
|
|
32
|
+
"bugs": {
|
|
33
|
+
"url": "https://github.com/FallDownTheSystem/converse/issues"
|
|
34
|
+
},
|
|
35
|
+
"files": [
|
|
36
|
+
"src/",
|
|
37
|
+
"bin/",
|
|
38
|
+
"docs/",
|
|
39
|
+
"README.md",
|
|
40
|
+
".env.example"
|
|
41
|
+
],
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"@anthropic-ai/sdk": "^0.65.0",
|
|
44
|
+
"@google/genai": "^1.22.0",
|
|
45
|
+
"@mistralai/mistralai": "^1.10.0",
|
|
46
|
+
"@modelcontextprotocol/sdk": "^1.19.1",
|
|
47
|
+
"@openai/codex-sdk": "^0.45.0",
|
|
48
|
+
"cors": "^2.8.5",
|
|
49
|
+
"dotenv": "^17.2.3",
|
|
50
|
+
"express": "^5.1.0",
|
|
51
|
+
"lru-cache": "^11.2.2",
|
|
52
|
+
"openai": "^6.1.0",
|
|
53
|
+
"p-limit": "^4.0.0",
|
|
54
|
+
"vite": "^7.1.9"
|
|
55
|
+
},
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
58
|
+
"cross-env": "^10.1.0",
|
|
59
|
+
"eslint": "^9.36.0",
|
|
60
|
+
"prettier": "^3.6.2",
|
|
61
|
+
"rimraf": "^6.0.1",
|
|
62
|
+
"vitest": "^3.2.4"
|
|
63
|
+
},
|
|
14
64
|
"scripts": {
|
|
15
65
|
"kill-server": "node scripts/kill-server.js",
|
|
16
66
|
"start": "npm run kill-server && node src/index.js",
|
|
@@ -64,55 +114,5 @@
|
|
|
64
114
|
"validate:fix": "node scripts/validate.js --fix",
|
|
65
115
|
"validate:fast": "node scripts/validate.js --skip-tests --skip-lint",
|
|
66
116
|
"precommit": "npm run validate"
|
|
67
|
-
},
|
|
68
|
-
"keywords": [
|
|
69
|
-
"mcp",
|
|
70
|
-
"server",
|
|
71
|
-
"ai",
|
|
72
|
-
"chat",
|
|
73
|
-
"consensus",
|
|
74
|
-
"openai",
|
|
75
|
-
"google",
|
|
76
|
-
"gemini",
|
|
77
|
-
"grok"
|
|
78
|
-
],
|
|
79
|
-
"author": "Converse MCP Server",
|
|
80
|
-
"license": "MIT",
|
|
81
|
-
"homepage": "https://github.com/FallDownTheSystem/converse#readme",
|
|
82
|
-
"repository": {
|
|
83
|
-
"type": "git",
|
|
84
|
-
"url": "git+https://github.com/FallDownTheSystem/converse.git"
|
|
85
|
-
},
|
|
86
|
-
"bugs": {
|
|
87
|
-
"url": "https://github.com/FallDownTheSystem/converse/issues"
|
|
88
|
-
},
|
|
89
|
-
"files": [
|
|
90
|
-
"src/",
|
|
91
|
-
"bin/",
|
|
92
|
-
"docs/",
|
|
93
|
-
"README.md",
|
|
94
|
-
".env.example"
|
|
95
|
-
],
|
|
96
|
-
"dependencies": {
|
|
97
|
-
"@anthropic-ai/sdk": "^0.65.0",
|
|
98
|
-
"@google/genai": "^1.22.0",
|
|
99
|
-
"@mistralai/mistralai": "^1.10.0",
|
|
100
|
-
"@modelcontextprotocol/sdk": "^1.19.1",
|
|
101
|
-
"@openai/codex-sdk": "^0.45.0",
|
|
102
|
-
"cors": "^2.8.5",
|
|
103
|
-
"dotenv": "^17.2.3",
|
|
104
|
-
"express": "^5.1.0",
|
|
105
|
-
"lru-cache": "^11.2.2",
|
|
106
|
-
"openai": "^6.1.0",
|
|
107
|
-
"p-limit": "^4.0.0",
|
|
108
|
-
"vite": "^7.1.9"
|
|
109
|
-
},
|
|
110
|
-
"devDependencies": {
|
|
111
|
-
"@vitest/coverage-v8": "^3.2.4",
|
|
112
|
-
"cross-env": "^10.1.0",
|
|
113
|
-
"eslint": "^9.36.0",
|
|
114
|
-
"prettier": "^3.6.2",
|
|
115
|
-
"rimraf": "^6.0.1",
|
|
116
|
-
"vitest": "^3.2.4"
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
}
|
package/src/providers/openai.js
CHANGED
|
@@ -10,9 +10,9 @@ import { debugLog, debugError } from '../utils/console.js';
|
|
|
10
10
|
|
|
11
11
|
// Define supported models with their capabilities
|
|
12
12
|
const SUPPORTED_MODELS = {
|
|
13
|
-
'gpt-5': {
|
|
14
|
-
modelName: 'gpt-5',
|
|
15
|
-
friendlyName: 'OpenAI (GPT-5)',
|
|
13
|
+
'gpt-5.1': {
|
|
14
|
+
modelName: 'gpt-5.1',
|
|
15
|
+
friendlyName: 'OpenAI (GPT-5.1)',
|
|
16
16
|
contextWindow: 400000,
|
|
17
17
|
maxOutputTokens: 128000,
|
|
18
18
|
supportsStreaming: true,
|
|
@@ -22,7 +22,21 @@ const SUPPORTED_MODELS = {
|
|
|
22
22
|
supportsResponsesAPI: true,
|
|
23
23
|
timeout: 3600000, // 1 hour
|
|
24
24
|
description: 'Latest flagship model (400K context, 128K output) - Superior reasoning, code generation, and analysis',
|
|
25
|
-
aliases: ['gpt5', 'gpt 5', 'gpt-5-2025-
|
|
25
|
+
aliases: ['gpt-5', 'gpt5', 'gpt 5', 'gpt-5.1-2025-11-13', 'gpt5.1', 'gpt 5.1']
|
|
26
|
+
},
|
|
27
|
+
'gpt-5-2025-08-07': {
|
|
28
|
+
modelName: 'gpt-5-2025-08-07',
|
|
29
|
+
friendlyName: 'OpenAI (GPT-5.0)',
|
|
30
|
+
contextWindow: 400000,
|
|
31
|
+
maxOutputTokens: 128000,
|
|
32
|
+
supportsStreaming: true,
|
|
33
|
+
supportsImages: true,
|
|
34
|
+
supportsTemperature: false, // GPT-5 doesn't support temperature
|
|
35
|
+
supportsWebSearch: true,
|
|
36
|
+
supportsResponsesAPI: true,
|
|
37
|
+
timeout: 3600000, // 1 hour
|
|
38
|
+
description: 'GPT-5.0 model (400K context, 128K output) - Previous version, accessible via fully qualified name',
|
|
39
|
+
aliases: ['gpt-5.0', 'gpt5.0', 'gpt 5.0']
|
|
26
40
|
},
|
|
27
41
|
'gpt-5-mini': {
|
|
28
42
|
modelName: 'gpt-5-mini',
|