@n0zer0d4y/vulcan-file-ops 1.2.2 → 1.2.3
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 +15 -0
- package/dist/server/index.js +0 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
|
+
## [1.2.3] - 2026-01-17
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- **CRITICAL**: Fixed MCP server connection failure in Claude Desktop caused by unsupported capability declarations
|
|
17
|
+
- Removed empty `resources: {}` and `prompts: {}` capability declarations from server initialization
|
|
18
|
+
- Server was declaring capabilities it didn't implement, causing "Method not found" errors for `resources/list` and `prompts/list`
|
|
19
|
+
- Post-MCP SDK upgrade compatibility fix: MCP protocol now strictly enforces that declared capabilities must have corresponding handlers
|
|
20
|
+
- Claude Desktop can now successfully connect and initialize the server without errors
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
|
|
24
|
+
- Server capabilities now only declare supported features (tools only)
|
|
25
|
+
- Improved MCP protocol compliance by removing unsupported capability declarations
|
|
26
|
+
|
|
12
27
|
## [1.2.2] - 2026-01-17
|
|
13
28
|
|
|
14
29
|
### Changed
|
package/dist/server/index.js
CHANGED
|
@@ -382,8 +382,6 @@ const server = new Server({
|
|
|
382
382
|
tools: {
|
|
383
383
|
listChanged: true,
|
|
384
384
|
},
|
|
385
|
-
resources: {},
|
|
386
|
-
prompts: {},
|
|
387
385
|
},
|
|
388
386
|
});
|
|
389
387
|
// Initialize handler - required for MCP protocol
|
|
@@ -395,8 +393,6 @@ server.setRequestHandler(InitializeRequestSchema, async (request) => {
|
|
|
395
393
|
tools: {
|
|
396
394
|
listChanged: true,
|
|
397
395
|
},
|
|
398
|
-
resources: {},
|
|
399
|
-
prompts: {},
|
|
400
396
|
},
|
|
401
397
|
serverInfo: {
|
|
402
398
|
name: "vulcan-file-ops",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@n0zer0d4y/vulcan-file-ops",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.3",
|
|
4
4
|
"mcpName": "io.github.n0zer0d4y/vulcan-file-ops",
|
|
5
5
|
"description": "MCP server for AI assistants: read, write, edit, and manage files securely on local filesystem.",
|
|
6
6
|
"license": "MIT",
|