@tsed/cli-mcp 7.0.0-rc.4 → 7.0.0
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/package.json +4 -7
- package/readme.md +2 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsed/cli-mcp",
|
|
3
3
|
"description": "MCP CLI for Ts.ED.",
|
|
4
|
-
"version": "7.0.0
|
|
4
|
+
"version": "7.0.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./lib/esm/index.js",
|
|
7
7
|
"source": "./src/index.ts",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"@swc-node/register": "^1.10.9",
|
|
51
51
|
"@swc/core": "1.7.26",
|
|
52
52
|
"@swc/helpers": "^0.5.13",
|
|
53
|
-
"@tsed/cli-core": "7.0.0
|
|
53
|
+
"@tsed/cli-core": "7.0.0",
|
|
54
54
|
"@tsed/core": ">=8.21.0",
|
|
55
55
|
"@tsed/di": ">=8.21.0",
|
|
56
56
|
"@tsed/hooks": ">=8.21.0",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"zod": "4.3.6"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
|
-
"@tsed/typescript": "7.0.0
|
|
76
|
+
"@tsed/typescript": "7.0.0",
|
|
77
77
|
"@types/change-case": "^2.3.1",
|
|
78
78
|
"@types/consolidate": "0.14.4",
|
|
79
79
|
"cross-env": "7.0.3",
|
|
@@ -119,8 +119,5 @@
|
|
|
119
119
|
},
|
|
120
120
|
"homepage": "https://github.com/tsedio/tsed-cli/tree/master/packages/cli-mcp",
|
|
121
121
|
"author": "Romain Lenzotti",
|
|
122
|
-
"license": "MIT"
|
|
123
|
-
"publishConfig": {
|
|
124
|
-
"tag": "rc"
|
|
125
|
-
}
|
|
122
|
+
"license": "MIT"
|
|
126
123
|
}
|
package/readme.md
CHANGED
|
@@ -41,6 +41,8 @@ The fastest way to start an MCP server is to:
|
|
|
41
41
|
1. Define one or more tools/resources/prompts with the helpers.
|
|
42
42
|
2. Bootstrap the server with `CLIMCPServer.bootstrap`.
|
|
43
43
|
|
|
44
|
+
> 📚 A complete, type-checked example lives at [`docs/examples/cli/mcp-server.ts`](../../docs/examples/cli/mcp-server.ts) and is surfaced in the public docs at [cli.tsed.dev/guide/cli/mcp](https://cli.tsed.dev/guide/cli/mcp).
|
|
45
|
+
|
|
44
46
|
### 1) Define a Tool
|
|
45
47
|
|
|
46
48
|
```ts
|