@decantr/mcp-server 3.6.0 → 3.6.2

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 CHANGED
@@ -38,20 +38,32 @@ Restart Claude Desktop. The Decantr tools will appear automatically.
38
38
 
39
39
  ### Cursor
40
40
 
41
- Create `.cursor/mcp.json` in your project root:
41
+ Preferred setup:
42
+
43
+ ```bash
44
+ npx @decantr/cli connect cursor
45
+ ```
46
+
47
+ From a monorepo root:
48
+
49
+ ```bash
50
+ pnpm exec decantr connect cursor --project apps/web
51
+ ```
52
+
53
+ The connector preserves existing MCP servers and writes the project rule that tells Cursor Agent to call Decantr task context before route edits. For manual setup, create `.cursor/mcp.json` in your project root:
42
54
 
43
55
  ```json
44
56
  {
45
57
  "mcpServers": {
46
58
  "decantr": {
47
59
  "command": "npx",
48
- "args": ["@decantr/mcp-server"]
60
+ "args": ["-y", "@decantr/mcp-server"]
49
61
  }
50
62
  }
51
63
  }
52
64
  ```
53
65
 
54
- Restart Cursor. The tools are available in Agent mode.
66
+ Restart Cursor. The tools are available in Agent mode. Add a project rule equivalent to `decantr connect cursor` if you configure MCP manually.
55
67
 
56
68
  ### Windsurf
57
69
 
package/dist/bin.js CHANGED
@@ -1,2 +1,2 @@
1
1
  #!/usr/bin/env node
2
- import "./chunk-A7AWXDF6.js";
2
+ import "./chunk-XCTAGWHI.js";
@@ -4329,7 +4329,7 @@ function describeUpdate(operation, payload) {
4329
4329
  }
4330
4330
 
4331
4331
  // src/index.ts
4332
- var VERSION = "3.6.0";
4332
+ var VERSION = "3.6.2";
4333
4333
  var server = new Server({ name: "decantr", version: VERSION }, { capabilities: { tools: {} } });
4334
4334
  server.setRequestHandler(ListToolsRequestSchema, async () => {
4335
4335
  return { tools: TOOLS };
package/dist/index.js CHANGED
@@ -1 +1 @@
1
- import "./chunk-A7AWXDF6.js";
1
+ import "./chunk-XCTAGWHI.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@decantr/mcp-server",
3
- "version": "3.6.0",
3
+ "version": "3.6.2",
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,9 +52,9 @@
52
52
  "dependencies": {
53
53
  "@modelcontextprotocol/sdk": "^1.29.0",
54
54
  "@decantr/core": "3.6.0",
55
+ "@decantr/verifier": "3.6.1",
55
56
  "@decantr/essence-spec": "3.4.0",
56
- "@decantr/registry": "3.4.0",
57
- "@decantr/verifier": "3.6.0"
57
+ "@decantr/registry": "3.4.0"
58
58
  },
59
59
  "scripts": {
60
60
  "build": "tsup",