@kubb/mcp 5.0.0-beta.66 → 5.0.0-beta.68
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 +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
|
|
25
25
|
### Model Context Protocol server for Kubb
|
|
26
26
|
|
|
27
|
-
MCP server for Kubb. Exposes code generation as a tool over the [Model Context Protocol](https://modelcontextprotocol.io) so AI assistants like [Claude](https://claude.ai), [Cursor](https://cursor.sh), and other MCP-compatible clients can generate TypeScript types, API clients, and more
|
|
27
|
+
MCP server for Kubb. Exposes code generation as a tool over the [Model Context Protocol](https://modelcontextprotocol.io) so AI assistants like [Claude](https://claude.ai), [Cursor](https://cursor.sh), and other MCP-compatible clients can generate TypeScript types, API clients, and more using natural language.
|
|
28
28
|
|
|
29
29
|
The server exposes a `generate` tool that runs a full Kubb build from a `kubb.config.ts`. It streams build events back to the client as real-time progress notifications. The server communicates over stdio and works with any MCP-compatible client.
|
|
30
30
|
|
package/dist/index.cjs
CHANGED
|
@@ -39,7 +39,7 @@ let jiti = require("jiti");
|
|
|
39
39
|
let node_process = require("node:process");
|
|
40
40
|
node_process = __toESM(node_process, 1);
|
|
41
41
|
//#region package.json
|
|
42
|
-
var version = "5.0.0-beta.
|
|
42
|
+
var version = "5.0.0-beta.68";
|
|
43
43
|
//#endregion
|
|
44
44
|
//#region ../../internals/utils/src/errors.ts
|
|
45
45
|
/**
|
package/dist/index.js
CHANGED
|
@@ -13,7 +13,7 @@ import { pathToFileURL } from "node:url";
|
|
|
13
13
|
import { createJiti } from "jiti";
|
|
14
14
|
import process$1 from "node:process";
|
|
15
15
|
//#region package.json
|
|
16
|
-
var version = "5.0.0-beta.
|
|
16
|
+
var version = "5.0.0-beta.68";
|
|
17
17
|
//#endregion
|
|
18
18
|
//#region ../../internals/utils/src/errors.ts
|
|
19
19
|
/**
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubb/mcp",
|
|
3
|
-
"version": "5.0.0-beta.
|
|
4
|
-
"description": "MCP server for Kubb. Exposes code generation as a tool over the Model Context Protocol so AI assistants like Claude, Cursor, and other MCP-compatible clients can generate TypeScript types, clients, and more
|
|
3
|
+
"version": "5.0.0-beta.68",
|
|
4
|
+
"description": "MCP server for Kubb. Exposes code generation as a tool over the Model Context Protocol so AI assistants like Claude, Cursor, and other MCP-compatible clients can generate TypeScript types, clients, and more.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
7
7
|
"codegen",
|
|
8
8
|
"kubb",
|
|
9
9
|
"llm",
|
|
10
10
|
"mcp",
|
|
11
|
+
"meta-framework",
|
|
11
12
|
"model-context-protocol",
|
|
12
|
-
"openapi",
|
|
13
13
|
"typescript"
|
|
14
14
|
],
|
|
15
15
|
"license": "MIT",
|
|
@@ -51,16 +51,16 @@
|
|
|
51
51
|
"jiti": "^2.7.0",
|
|
52
52
|
"tmcp": "^1.19.4",
|
|
53
53
|
"valibot": "^1.4.1",
|
|
54
|
-
"@kubb/adapter-oas": "5.0.0-beta.
|
|
55
|
-
"@kubb/core": "5.0.0-beta.
|
|
54
|
+
"@kubb/adapter-oas": "5.0.0-beta.68",
|
|
55
|
+
"@kubb/core": "5.0.0-beta.68"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@internals/shared": "0.0.0",
|
|
59
59
|
"@internals/utils": "0.0.0",
|
|
60
|
-
"@kubb/renderer-jsx": "5.0.0-beta.
|
|
60
|
+
"@kubb/renderer-jsx": "5.0.0-beta.68"
|
|
61
61
|
},
|
|
62
62
|
"peerDependencies": {
|
|
63
|
-
"@kubb/renderer-jsx": "5.0.0-beta.
|
|
63
|
+
"@kubb/renderer-jsx": "5.0.0-beta.68"
|
|
64
64
|
},
|
|
65
65
|
"engines": {
|
|
66
66
|
"node": ">=22"
|