@collage-dam/mcp-server 0.1.0 → 0.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 +20 -0
- package/dist/index.js +1 -1
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.1] — 2026-05-18
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Bump `@modelcontextprotocol/sdk` from `1.12.1` to `1.29.0`. The 1.12
|
|
14
|
+
line speaks MCP protocol `2025-03-26`; modern clients (Claude Code
|
|
15
|
+
≥2.1.69, Claude Desktop, recent ChatGPT MCP support) negotiate
|
|
16
|
+
`2025-11-25` and disconnect after `initialize` when the server replies
|
|
17
|
+
with the older version. Symptom in the client log: `Server transport
|
|
18
|
+
closed` ~1–2 s after `initialize`, with no `tools/list` ever issued.
|
|
19
|
+
- Add `mcp-server` as a second `bin` alias so `npx -y
|
|
20
|
+
@collage-dam/mcp-server` resolves a binary on npm versions that
|
|
21
|
+
match bin name against the unscoped package name. The original
|
|
22
|
+
`collage-mcp` bin is preserved for backwards compatibility.
|
|
23
|
+
- Lower `engines.node` from `>=20` to `>=18`. The runtime code does not
|
|
24
|
+
use any Node 20-only API; the previous floor surfaced a misleading
|
|
25
|
+
`EBADENGINE` warning in client logs that distracted from the real
|
|
26
|
+
protocol-version mismatch above.
|
|
27
|
+
|
|
28
|
+
## [0.1.0] - prior unreleased work
|
|
29
|
+
|
|
10
30
|
### Added
|
|
11
31
|
- `listAllCategoriesRecursive()` — full folder tree walk via BFS over
|
|
12
32
|
`sub-category-list`, bounded by `maxNodes` / `maxDepth`. Closes the
|
package/dist/index.js
CHANGED
|
@@ -57,7 +57,7 @@ import { wrapPromptAsTool } from './prompts/wrap-prompt-as-tool.js';
|
|
|
57
57
|
import { buildCollectionLookup } from './tools/asset-selection.js';
|
|
58
58
|
export { COLLAGE_MCP_SCHEMA_VERSION, SchemaVersionSchema, addSchemaVersion, validateSchemaVersion, } from './conventions/schema-version.js';
|
|
59
59
|
const SERVER_NAME = 'collage-mcp';
|
|
60
|
-
const SERVER_VERSION = '0.1.
|
|
60
|
+
const SERVER_VERSION = '0.1.1';
|
|
61
61
|
function withTextContent(inner) {
|
|
62
62
|
return async (args) => {
|
|
63
63
|
const result = await inner(args);
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@collage-dam/mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Model Context Protocol (MCP) server for the Collage Digital Asset Management platform. Exposes Collage workspaces — assets, folders, collections, share links, audit prompts — to AI clients (Claude Desktop, Cursor, ChatGPT) through a typed tool surface.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"bin": {
|
|
9
|
-
"collage-mcp": "dist/index.js"
|
|
9
|
+
"collage-mcp": "dist/index.js",
|
|
10
|
+
"mcp-server": "dist/index.js"
|
|
10
11
|
},
|
|
11
12
|
"files": [
|
|
12
13
|
"dist",
|
|
@@ -49,14 +50,14 @@
|
|
|
49
50
|
"url": "https://github.com/southleft/collage-mcp/issues"
|
|
50
51
|
},
|
|
51
52
|
"engines": {
|
|
52
|
-
"node": ">=
|
|
53
|
+
"node": ">=18"
|
|
53
54
|
},
|
|
54
55
|
"publishConfig": {
|
|
55
56
|
"access": "public",
|
|
56
57
|
"registry": "https://registry.npmjs.org/"
|
|
57
58
|
},
|
|
58
59
|
"dependencies": {
|
|
59
|
-
"@modelcontextprotocol/sdk": "1.
|
|
60
|
+
"@modelcontextprotocol/sdk": "1.29.0",
|
|
60
61
|
"ioredis": "^5.10.1",
|
|
61
62
|
"pino": "^9.6.0",
|
|
62
63
|
"ulid": "^2.3.0",
|