@kubb/mcp 5.0.0-beta.106 → 5.0.0-beta.108
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 +4 -5
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -155,18 +155,17 @@ Example `kubb.config.ts`:
|
|
|
155
155
|
|
|
156
156
|
```typescript
|
|
157
157
|
import { defineConfig } from 'kubb'
|
|
158
|
-
import {
|
|
158
|
+
import { adapterOas } from '@kubb/adapter-oas'
|
|
159
159
|
import { pluginTs } from '@kubb/plugin-ts'
|
|
160
160
|
import { pluginAxios } from '@kubb/plugin-axios'
|
|
161
161
|
|
|
162
162
|
export default defineConfig({
|
|
163
|
-
input:
|
|
164
|
-
path: './petstore.yaml',
|
|
165
|
-
},
|
|
163
|
+
input: './petstore.yaml',
|
|
166
164
|
output: {
|
|
167
165
|
path: './src/generated',
|
|
168
166
|
},
|
|
169
|
-
|
|
167
|
+
adapter: adapterOas(),
|
|
168
|
+
plugins: [pluginTs(), pluginAxios()],
|
|
170
169
|
})
|
|
171
170
|
```
|
|
172
171
|
|
package/dist/index.cjs
CHANGED
|
@@ -38,7 +38,7 @@ let node_module = require("node:module");
|
|
|
38
38
|
let node_process = require("node:process");
|
|
39
39
|
node_process = __toESM(node_process, 1);
|
|
40
40
|
//#region package.json
|
|
41
|
-
var version = "5.0.0-beta.
|
|
41
|
+
var version = "5.0.0-beta.108";
|
|
42
42
|
//#endregion
|
|
43
43
|
//#region src/schemas/generateSchema.ts
|
|
44
44
|
const generateSchema = valibot.object({
|
package/dist/index.js
CHANGED
|
@@ -11,7 +11,7 @@ import fs, { existsSync } from "node:fs";
|
|
|
11
11
|
import path from "node:path";
|
|
12
12
|
import process$1 from "node:process";
|
|
13
13
|
//#region package.json
|
|
14
|
-
var version = "5.0.0-beta.
|
|
14
|
+
var version = "5.0.0-beta.108";
|
|
15
15
|
//#endregion
|
|
16
16
|
//#region src/schemas/generateSchema.ts
|
|
17
17
|
const generateSchema = v.object({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubb/mcp",
|
|
3
|
-
"version": "5.0.0-beta.
|
|
3
|
+
"version": "5.0.0-beta.108",
|
|
4
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",
|
|
@@ -50,16 +50,16 @@
|
|
|
50
50
|
"@tmcp/transport-stdio": "^0.4.3",
|
|
51
51
|
"tmcp": "^1.19.4",
|
|
52
52
|
"valibot": "^1.4.2",
|
|
53
|
-
"@kubb/adapter-oas": "5.0.0-beta.
|
|
54
|
-
"@kubb/core": "5.0.0-beta.
|
|
53
|
+
"@kubb/adapter-oas": "5.0.0-beta.108",
|
|
54
|
+
"@kubb/core": "5.0.0-beta.108"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@internals/utils": "0.0.0",
|
|
58
|
-
"@kubb/renderer-jsx": "5.0.0-beta.
|
|
58
|
+
"@kubb/renderer-jsx": "5.0.0-beta.108",
|
|
59
59
|
"@internals/shared": "0.0.0"
|
|
60
60
|
},
|
|
61
61
|
"peerDependencies": {
|
|
62
|
-
"@kubb/renderer-jsx": "5.0.0-beta.
|
|
62
|
+
"@kubb/renderer-jsx": "5.0.0-beta.108"
|
|
63
63
|
},
|
|
64
64
|
"engines": {
|
|
65
65
|
"node": ">=22"
|