@reqlan/mcp 0.2.0 → 0.2.3
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 +47 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -50,4 +50,50 @@ Set `REQLAN_WORKSPACE` to the workspace root (or run from that directory). Overr
|
|
|
50
50
|
|
|
51
51
|
## Changelog
|
|
52
52
|
|
|
53
|
-
|
|
53
|
+
### 0.2.3
|
|
54
|
+
|
|
55
|
+
#### Patch Changes
|
|
56
|
+
|
|
57
|
+
- 75902d5: fix tests; and decouple golden corpus.
|
|
58
|
+
- Updated dependencies [75902d5]
|
|
59
|
+
- @reqlan/analytical@0.10.2
|
|
60
|
+
|
|
61
|
+
### 0.2.2
|
|
62
|
+
|
|
63
|
+
#### Patch Changes
|
|
64
|
+
|
|
65
|
+
- 6f49b58: try again , with mcp permissions
|
|
66
|
+
|
|
67
|
+
### 0.2.1
|
|
68
|
+
|
|
69
|
+
#### Patch Changes
|
|
70
|
+
|
|
71
|
+
- 06e9150: fix build and deps.
|
|
72
|
+
- Updated dependencies [06e9150]
|
|
73
|
+
- @reqlan/analytical@0.10.1
|
|
74
|
+
|
|
75
|
+
### 0.2.0
|
|
76
|
+
|
|
77
|
+
#### Minor Changes
|
|
78
|
+
|
|
79
|
+
- e9b7e8a: rust
|
|
80
|
+
|
|
81
|
+
#### Patch Changes
|
|
82
|
+
|
|
83
|
+
- 72246b6: up pnpm
|
|
84
|
+
- 70ccc6f: up pnpm version
|
|
85
|
+
- Updated dependencies [72246b6]
|
|
86
|
+
- Updated dependencies [e9b7e8a]
|
|
87
|
+
- Updated dependencies [70ccc6f]
|
|
88
|
+
- @reqlan/analytical@0.10.0
|
|
89
|
+
|
|
90
|
+
### 0.1.0
|
|
91
|
+
|
|
92
|
+
#### Minor Changes
|
|
93
|
+
|
|
94
|
+
- 45d37df: Publish the MCP stdio server to npm as `@reqlan/mcp` on the `mcp/v*` Changesets channel. Install Cursor Skills uses `npx @reqlan/mcp` when the workspace has no local MCP bin.
|
|
95
|
+
|
|
96
|
+
#### Patch Changes
|
|
97
|
+
|
|
98
|
+
- Updated dependencies [45d37df]
|
|
99
|
+
- @reqlan/analytical@0.9.1
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reqlan/mcp",
|
|
3
3
|
"description": "MCP server exposing reqlan requirement graph tools",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "AGPL-3.0-only",
|
|
7
7
|
"repository": {
|
|
@@ -26,9 +26,10 @@
|
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
28
28
|
"zod": "^3.24.2",
|
|
29
|
-
"@reqlan/analytical": "0.10.
|
|
29
|
+
"@reqlan/analytical": "0.10.2"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
+
"@types/node": "^26.2.0",
|
|
32
33
|
"shx": "~0.4.0"
|
|
33
34
|
},
|
|
34
35
|
"scripts": {
|