@decantr/mcp-server 3.8.0 → 3.8.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/README.md +1 -1
- package/dist/bin.js +1 -1
- package/dist/{chunk-M45XVAPP.js → chunk-ZZ6NMQ5Y.js} +1 -1
- package/dist/index.js +1 -1
- package/package.json +5 -5
- package/server.json +2 -2
package/README.md
CHANGED
|
@@ -167,7 +167,7 @@ Content-corpus and pack-resolution tools may call the configured Decantr API. So
|
|
|
167
167
|
|
|
168
168
|
### 3.4 Tool Surface Migration
|
|
169
169
|
|
|
170
|
-
Decantr 3.4 consolidated legacy MCP tool names into the eight action-based tools above. Decantr 3.
|
|
170
|
+
Decantr 3.4 consolidated legacy MCP tool names into the eight action-based tools above. Decantr 3.8.1 keeps that surface, preserves v2 task/evidence/workspace-health/health-loop contracts, and routes official corpus compatibility through `decantr_registry` rather than adding a ninth tool. For example, `decantr_get_project_state` becomes `decantr_project` with `{ "action": "state" }`, `decantr_get_graph_snapshot` becomes `decantr_graph` with `{ "action": "snapshot" }`, and the legacy write tools become `decantr_contract_write` with `{ "action": "accept_drift" }` or `{ "action": "update_essence" }`.
|
|
171
171
|
|
|
172
172
|
## How It Works
|
|
173
173
|
|
package/dist/bin.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import "./chunk-
|
|
2
|
+
import "./chunk-ZZ6NMQ5Y.js";
|
|
@@ -4249,7 +4249,7 @@ function describeUpdate(operation, payload) {
|
|
|
4249
4249
|
}
|
|
4250
4250
|
|
|
4251
4251
|
// src/index.ts
|
|
4252
|
-
var VERSION = "3.8.
|
|
4252
|
+
var VERSION = "3.8.1";
|
|
4253
4253
|
var server = new Server({ name: "decantr", version: VERSION }, { capabilities: { tools: {} } });
|
|
4254
4254
|
server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
4255
4255
|
return { tools: TOOLS };
|
package/dist/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import "./chunk-
|
|
1
|
+
import "./chunk-ZZ6NMQ5Y.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@decantr/mcp-server",
|
|
3
|
-
"version": "3.8.
|
|
3
|
+
"version": "3.8.1",
|
|
4
4
|
"mcpName": "io.github.decantr-ai/mcp-server",
|
|
5
5
|
"description": "MCP server for Decantr — exposes Contract context, typed graph artifacts, and verification evidence to AI coding assistants",
|
|
6
6
|
"keywords": [
|
|
@@ -52,10 +52,10 @@
|
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
55
|
-
"@decantr/core": "3.8.
|
|
56
|
-
"@decantr/
|
|
57
|
-
"@decantr/
|
|
58
|
-
"@decantr/
|
|
55
|
+
"@decantr/core": "3.8.1",
|
|
56
|
+
"@decantr/essence-spec": "3.8.1",
|
|
57
|
+
"@decantr/registry": "3.8.1",
|
|
58
|
+
"@decantr/verifier": "3.8.1"
|
|
59
59
|
},
|
|
60
60
|
"scripts": {
|
|
61
61
|
"build": "tsup",
|
package/server.json
CHANGED
|
@@ -6,12 +6,12 @@
|
|
|
6
6
|
"url": "https://github.com/decantr-ai/decantr",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "3.8.
|
|
9
|
+
"version": "3.8.1",
|
|
10
10
|
"packages": [
|
|
11
11
|
{
|
|
12
12
|
"registryType": "npm",
|
|
13
13
|
"identifier": "@decantr/mcp-server",
|
|
14
|
-
"version": "3.8.
|
|
14
|
+
"version": "3.8.1",
|
|
15
15
|
"transport": {
|
|
16
16
|
"type": "stdio"
|
|
17
17
|
}
|