@veloxts/mcp 0.7.9 → 0.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/CHANGELOG.md +23 -0
- package/README.md +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @veloxts/mcp
|
|
2
2
|
|
|
3
|
+
## 0.8.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- feat: add business logic primitives for B2B SaaS apps
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @veloxts/cli@0.8.1
|
|
10
|
+
- @veloxts/router@0.8.1
|
|
11
|
+
- @veloxts/validation@0.8.1
|
|
12
|
+
|
|
13
|
+
## 0.8.0
|
|
14
|
+
|
|
15
|
+
### Minor Changes
|
|
16
|
+
|
|
17
|
+
- feat(router): new simplified procedure builder
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
- @veloxts/cli@0.8.0
|
|
23
|
+
- @veloxts/router@0.8.0
|
|
24
|
+
- @veloxts/validation@0.8.0
|
|
25
|
+
|
|
3
26
|
## 0.7.9
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @veloxts/mcp
|
|
2
2
|
|
|
3
|
-
> **Early Access (v0.
|
|
3
|
+
> **Early Access (v0.8.x)**
|
|
4
4
|
|
|
5
5
|
Model Context Protocol server for VeloxTS - exposes project context (procedures, schemas, routes, errors) to AI assistants like Claude Desktop and other tools that support the Model Context Protocol.
|
|
6
6
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veloxts/mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"description": "Model Context Protocol server for VeloxTS - expose project context to AI tools",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -22,20 +22,20 @@
|
|
|
22
22
|
"CHANGELOG.md"
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@modelcontextprotocol/sdk": "1.
|
|
25
|
+
"@modelcontextprotocol/sdk": "1.27.1",
|
|
26
26
|
"typescript": "5.9.3",
|
|
27
|
-
"@veloxts/
|
|
28
|
-
"@veloxts/
|
|
29
|
-
"@veloxts/
|
|
27
|
+
"@veloxts/router": "0.8.1",
|
|
28
|
+
"@veloxts/validation": "0.8.1",
|
|
29
|
+
"@veloxts/cli": "0.8.1"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
32
|
"zod": "^4.3.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@types/node": "25.
|
|
36
|
-
"@vitest/coverage-v8": "4.0
|
|
35
|
+
"@types/node": "25.5.0",
|
|
36
|
+
"@vitest/coverage-v8": "4.1.0",
|
|
37
37
|
"typescript": "5.9.3",
|
|
38
|
-
"vitest": "4.0
|
|
38
|
+
"vitest": "4.1.0"
|
|
39
39
|
},
|
|
40
40
|
"keywords": [
|
|
41
41
|
"velox",
|