@vincemakes/kiso-mcp-ext 0.1.45

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/index.d.ts ADDED
@@ -0,0 +1,11 @@
1
+ /**
2
+ * The published type surface of @vincemakes/kiso-mcp-ext: the default
3
+ * export is the FACTORY (the same contract the user-layer disk loader
4
+ * accepts — a KisoExtension or a factory returning one). The type import
5
+ * from kiso-core is compile-time only — the shipped bundle is
6
+ * self-contained, zero runtime dependencies.
7
+ */
8
+ import type { KisoExtension } from "@vincemakes/kiso-core";
9
+
10
+ declare const createMcpExtension: () => KisoExtension | Promise<KisoExtension>;
11
+ export default createMcpExtension;
package/package.json ADDED
@@ -0,0 +1,33 @@
1
+ {
2
+ "name": "@vincemakes/kiso-mcp-ext",
3
+ "version": "0.1.45",
4
+ "description": "kiso official MCP bridge extension \u2014 MCP servers become mcp__ tools, kernel untouched",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "main": "./dist/kiso-mcp.mjs",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./index.d.ts",
11
+ "import": "./dist/kiso-mcp.mjs"
12
+ }
13
+ },
14
+ "files": [
15
+ "dist",
16
+ "index.d.ts",
17
+ "README.md",
18
+ "LICENSE"
19
+ ],
20
+ "scripts": {
21
+ "build": "node esbuild.mjs",
22
+ "typecheck": "tsc -p tsconfig.json",
23
+ "test": "vitest run"
24
+ },
25
+ "devDependencies": {
26
+ "@modelcontextprotocol/sdk": "^1.0.0",
27
+ "@vincemakes/kiso-core": "0.1.35",
28
+ "@types/node": "^26.1.2",
29
+ "esbuild": "^0.24.0",
30
+ "typescript": "^5.7.2",
31
+ "vitest": "^3.0.0"
32
+ }
33
+ }