@decantr/mcp-server 3.6.1 → 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 +15 -3
- package/dist/bin.js +1 -1
- package/dist/{chunk-7X4OMCHQ.js → chunk-XCTAGWHI.js} +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
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
|
-
|
|
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-
|
|
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.
|
|
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-
|
|
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.
|
|
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": [
|