@forklaunch/core 0.12.1 → 0.12.2
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/http/index.d.mts +1 -1
- package/lib/http/index.d.ts +1 -1
- package/lib/http/index.js +2 -2
- package/lib/http/index.js.map +1 -1
- package/lib/http/index.mjs +1 -1
- package/lib/http/index.mjs.map +1 -1
- package/package.json +2 -2
package/lib/http/index.d.mts
CHANGED
@@ -8,8 +8,8 @@ import { LevelWithSilentOrString, LevelWithSilent, Logger } from 'pino';
|
|
8
8
|
export { LevelWithSilent, LevelWithSilentOrString, Logger } from 'pino';
|
9
9
|
import { JWTPayload } from 'jose';
|
10
10
|
import { Readable } from 'stream';
|
11
|
+
import { FastMCP } from '@forklaunch/fastmcp-fork';
|
11
12
|
import { ZodSchemaValidator } from '@forklaunch/validator/zod';
|
12
|
-
import { FastMCP } from 'fastmcp';
|
13
13
|
import { OpenAPIObject } from 'openapi3-ts/oas31';
|
14
14
|
import { AnyValueMap } from '@opentelemetry/api-logs';
|
15
15
|
import { ApiReferenceConfiguration } from '@scalar/express-api-reference';
|
package/lib/http/index.d.ts
CHANGED
@@ -8,8 +8,8 @@ import { LevelWithSilentOrString, LevelWithSilent, Logger } from 'pino';
|
|
8
8
|
export { LevelWithSilent, LevelWithSilentOrString, Logger } from 'pino';
|
9
9
|
import { JWTPayload } from 'jose';
|
10
10
|
import { Readable } from 'stream';
|
11
|
+
import { FastMCP } from '@forklaunch/fastmcp-fork';
|
11
12
|
import { ZodSchemaValidator } from '@forklaunch/validator/zod';
|
12
|
-
import { FastMCP } from 'fastmcp';
|
13
13
|
import { OpenAPIObject } from 'openapi3-ts/oas31';
|
14
14
|
import { AnyValueMap } from '@opentelemetry/api-logs';
|
15
15
|
import { ApiReferenceConfiguration } from '@scalar/express-api-reference';
|
package/lib/http/index.js
CHANGED
@@ -2739,8 +2739,8 @@ var httpStatusCodes_default = HTTPStatuses;
|
|
2739
2739
|
|
2740
2740
|
// src/http/mcpGenerator/mcpGenerator.ts
|
2741
2741
|
var import_common9 = require("@forklaunch/common");
|
2742
|
+
var import_fastmcp_fork = require("@forklaunch/fastmcp-fork");
|
2742
2743
|
var import_zod = require("@forklaunch/validator/zod");
|
2743
|
-
var import_fastmcp = require("fastmcp");
|
2744
2744
|
|
2745
2745
|
// src/http/guards/isVersionedInputSchema.ts
|
2746
2746
|
function isUnionable(schema) {
|
@@ -2796,7 +2796,7 @@ function generateMcpServer(schemaValidator, protocol, host, port, version, appli
|
|
2796
2796
|
"Schema validator must be an instance of ZodSchemaValidator"
|
2797
2797
|
);
|
2798
2798
|
}
|
2799
|
-
const mcpServer = new
|
2799
|
+
const mcpServer = new import_fastmcp_fork.FastMCP({
|
2800
2800
|
...options2,
|
2801
2801
|
name: options2?.name ?? "mcp-server",
|
2802
2802
|
version
|