@sanity/workflow-mcp 0.9.1 → 0.20.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/CHANGELOG.md +19 -0
- package/dist/stdio.js +1 -1
- package/package.json +8 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @sanity/workflow-mcp
|
|
2
2
|
|
|
3
|
+
## 0.20.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- e860898: **BREAKING:** Published Editorial Workflows packages now ship as one fixed release stack and require exact-version peers for every shared runtime package. Install the matching stack so the engine, reactive core, adapters, tools, and UI cannot silently load private or version-skewed copies.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [bce09fc]
|
|
12
|
+
- Updated dependencies [efb4cd9]
|
|
13
|
+
- Updated dependencies [46b0285]
|
|
14
|
+
- Updated dependencies [ab5e454]
|
|
15
|
+
- Updated dependencies [8a76c67]
|
|
16
|
+
- Updated dependencies [e3122cc]
|
|
17
|
+
- Updated dependencies [7e8f459]
|
|
18
|
+
- Updated dependencies [98e488e]
|
|
19
|
+
- Updated dependencies [7c4dd86]
|
|
20
|
+
- @sanity/workflow-engine@0.20.0
|
|
21
|
+
|
|
3
22
|
## 0.9.1
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/dist/stdio.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sanity/workflow-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.20.0",
|
|
4
4
|
"description": "MCP server exposing Sanity workflow tools to agents — operate running workflow instances and author new definitions.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent",
|
|
@@ -55,15 +55,18 @@
|
|
|
55
55
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
56
56
|
"@sanity/client": "^7.22.1",
|
|
57
57
|
"@sanity/telemetry": "^1.1.0",
|
|
58
|
-
"zod": "^4.4.3"
|
|
59
|
-
"@sanity/workflow-engine": "0.19.0"
|
|
58
|
+
"zod": "^4.4.3"
|
|
60
59
|
},
|
|
61
60
|
"devDependencies": {
|
|
62
61
|
"@sanity/pkg-utils": "^10.5.2",
|
|
63
62
|
"@types/node": "^24.12.4",
|
|
64
63
|
"vitest": "^4.1.8",
|
|
65
|
-
"@sanity/workflow-engine
|
|
66
|
-
"@sanity/workflow-
|
|
64
|
+
"@sanity/workflow-engine": "0.20.0",
|
|
65
|
+
"@sanity/workflow-engine-test": "0.20.0",
|
|
66
|
+
"@sanity/workflow-examples": "0.9.0"
|
|
67
|
+
},
|
|
68
|
+
"peerDependencies": {
|
|
69
|
+
"@sanity/workflow-engine": "0.20.0"
|
|
67
70
|
},
|
|
68
71
|
"engines": {
|
|
69
72
|
"node": ">=20"
|