converse-mcp-server 2.20.2 → 2.20.4
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 +13 -13
- package/src/utils/pathParser.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "converse-mcp-server",
|
|
3
|
-
"version": "2.20.
|
|
3
|
+
"version": "2.20.4",
|
|
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",
|
|
@@ -94,30 +94,30 @@
|
|
|
94
94
|
".env.example"
|
|
95
95
|
],
|
|
96
96
|
"dependencies": {
|
|
97
|
-
"@anthropic-ai/claude-agent-sdk": "^0.2.
|
|
98
|
-
"@anthropic-ai/sdk": "^0.
|
|
99
|
-
"@github/copilot-sdk": "^0.1.
|
|
100
|
-
"@google/genai": "^1.
|
|
101
|
-
"@mistralai/mistralai": "^1.
|
|
97
|
+
"@anthropic-ai/claude-agent-sdk": "^0.2.74",
|
|
98
|
+
"@anthropic-ai/sdk": "^0.78.0",
|
|
99
|
+
"@github/copilot-sdk": "^0.1.32",
|
|
100
|
+
"@google/genai": "^1.45.0",
|
|
101
|
+
"@mistralai/mistralai": "^1.15.1",
|
|
102
102
|
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
103
|
-
"@openai/codex-sdk": "^0.
|
|
104
|
-
"ai": "^6.0.
|
|
103
|
+
"@openai/codex-sdk": "^0.114.0",
|
|
104
|
+
"ai": "^6.0.116",
|
|
105
105
|
"ai-sdk-provider-gemini-cli": "^2.0.1",
|
|
106
106
|
"cors": "^2.8.6",
|
|
107
107
|
"dotenv": "^17.3.1",
|
|
108
108
|
"express": "^5.2.1",
|
|
109
109
|
"lru-cache": "^11.2.6",
|
|
110
110
|
"nanoid": "^5.1.6",
|
|
111
|
-
"openai": "^6.
|
|
111
|
+
"openai": "^6.27.0",
|
|
112
112
|
"p-limit": "^7.3.0",
|
|
113
|
-
"vite": "^
|
|
113
|
+
"vite": "^8.0.0"
|
|
114
114
|
},
|
|
115
115
|
"devDependencies": {
|
|
116
|
-
"@vitest/coverage-v8": "^4.0
|
|
116
|
+
"@vitest/coverage-v8": "^4.1.0",
|
|
117
117
|
"cross-env": "^10.1.0",
|
|
118
|
-
"eslint": "^10.0.
|
|
118
|
+
"eslint": "^10.0.3",
|
|
119
119
|
"prettier": "^3.8.1",
|
|
120
120
|
"rimraf": "^6.1.3",
|
|
121
|
-
"vitest": "^4.0
|
|
121
|
+
"vitest": "^4.1.0"
|
|
122
122
|
}
|
|
123
123
|
}
|
package/src/utils/pathParser.js
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
* Captures: (filePath)(startLine)(endLine)
|
|
17
17
|
* Pattern: ^(.*)\{(\d*):(\d*)\}$
|
|
18
18
|
*/
|
|
19
|
-
const RANGE_PATTERN = /^(.*)\{(\d*)
|
|
19
|
+
const RANGE_PATTERN = /^(.*)\{(\d*)[:\-,;](\d*)\}$/;
|
|
20
20
|
|
|
21
21
|
/**
|
|
22
22
|
* Parse a file path that may contain a line range specifier.
|