@forklaunch/express 0.9.31 → 0.9.32
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/lib/index.js +4 -2
- package/lib/index.mjs +4 -2
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -2102,7 +2102,8 @@ var Application = class extends import_http3.ForklaunchExpressLikeApplication {
|
|
|
2102
2102
|
path: mcpPath,
|
|
2103
2103
|
version,
|
|
2104
2104
|
additionalTools,
|
|
2105
|
-
contentTypeMapping
|
|
2105
|
+
contentTypeMapping,
|
|
2106
|
+
authenticate
|
|
2106
2107
|
} = this.mcpConfiguration ?? {};
|
|
2107
2108
|
const zodSchemaValidator = this.schemaValidator;
|
|
2108
2109
|
const finalMcpPort = mcpPort ?? port + 2e3;
|
|
@@ -2115,7 +2116,8 @@ var Application = class extends import_http3.ForklaunchExpressLikeApplication {
|
|
|
2115
2116
|
this,
|
|
2116
2117
|
this.mcpConfiguration,
|
|
2117
2118
|
options2,
|
|
2118
|
-
contentTypeMapping
|
|
2119
|
+
contentTypeMapping,
|
|
2120
|
+
authenticate
|
|
2119
2121
|
);
|
|
2120
2122
|
if (additionalTools) {
|
|
2121
2123
|
additionalTools(mcpServer);
|
package/lib/index.mjs
CHANGED
|
@@ -2075,7 +2075,8 @@ var Application = class extends ForklaunchExpressLikeApplication {
|
|
|
2075
2075
|
path: mcpPath,
|
|
2076
2076
|
version,
|
|
2077
2077
|
additionalTools,
|
|
2078
|
-
contentTypeMapping
|
|
2078
|
+
contentTypeMapping,
|
|
2079
|
+
authenticate
|
|
2079
2080
|
} = this.mcpConfiguration ?? {};
|
|
2080
2081
|
const zodSchemaValidator = this.schemaValidator;
|
|
2081
2082
|
const finalMcpPort = mcpPort ?? port + 2e3;
|
|
@@ -2088,7 +2089,8 @@ var Application = class extends ForklaunchExpressLikeApplication {
|
|
|
2088
2089
|
this,
|
|
2089
2090
|
this.mcpConfiguration,
|
|
2090
2091
|
options2,
|
|
2091
|
-
contentTypeMapping
|
|
2092
|
+
contentTypeMapping,
|
|
2093
|
+
authenticate
|
|
2092
2094
|
);
|
|
2093
2095
|
if (additionalTools) {
|
|
2094
2096
|
additionalTools(mcpServer);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forklaunch/express",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.32",
|
|
4
4
|
"description": "Forklaunch framework for express.",
|
|
5
5
|
"homepage": "https://github.com/forklaunch/forklaunch-js#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"range-parser": "^1.2.1",
|
|
39
39
|
"swagger-ui-express": "^5.0.1",
|
|
40
40
|
"@forklaunch/common": "0.6.22",
|
|
41
|
-
"@forklaunch/core": "0.
|
|
41
|
+
"@forklaunch/core": "0.16.0",
|
|
42
42
|
"@forklaunch/validator": "0.10.22"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|