@jalpp/mcp-adapter 0.3.1 → 0.3.3
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/dist/index.d.ts +36 -10
- package/dist/index.js +19334 -120
- package/package.json +19 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jalpp/mcp-adapter",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "Adapter utilities for registering MCP tools with full TypeScript type safety — supports typed callbacks and automatic HTTP endpoint bridging with auth",
|
|
5
5
|
"author": "jalpp",
|
|
6
6
|
"license": "MIT",
|
|
@@ -40,19 +40,30 @@
|
|
|
40
40
|
"scripts": {
|
|
41
41
|
"build": "tsup",
|
|
42
42
|
"dev": "tsup --watch",
|
|
43
|
-
"prepublishOnly": "npm run build"
|
|
43
|
+
"prepublishOnly": "npm run build",
|
|
44
|
+
"version:patch": "npm version patch",
|
|
45
|
+
"version:minor": "npm version minor",
|
|
46
|
+
"version:major": "npm version major",
|
|
47
|
+
"release": "npm run build && npm publish --access public",
|
|
48
|
+
"release:dry": "npm run build && npm publish --dry-run",
|
|
49
|
+
"release:patch": "npm version patch && npm publish --access public",
|
|
50
|
+
"release:minor": "npm version minor && npm publish --access public",
|
|
51
|
+
"release:major": "npm version major && npm publish --access public"
|
|
44
52
|
},
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
|
|
48
|
-
|
|
53
|
+
"peerDependenciesMeta": {
|
|
54
|
+
"axios": {
|
|
55
|
+
"optional": false
|
|
56
|
+
},
|
|
57
|
+
"zod": {
|
|
58
|
+
"optional": false
|
|
59
|
+
}
|
|
49
60
|
},
|
|
50
61
|
"devDependencies": {
|
|
51
|
-
"@modelcontextprotocol/sdk": "
|
|
62
|
+
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
52
63
|
"@types/node": "^25.4.0",
|
|
53
64
|
"tsup": "^8.0.0",
|
|
54
65
|
"typescript": "^5.0.0",
|
|
55
|
-
"zod": "
|
|
66
|
+
"zod": "^3.0.0"
|
|
56
67
|
},
|
|
57
68
|
"dependencies": {
|
|
58
69
|
"axios": ">=1.0.0"
|