@mastra/mcp 0.10.12-alpha.0 → 0.10.12
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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +55 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/integration-tests/node_modules/.bin/mastra +21 -0
- package/integration-tests/package.json +1 -1
- package/package.json +5 -5
- package/src/server/server.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -2351,10 +2351,10 @@ Provided arguments: ${JSON.stringify(request.params.arguments, null, 2)}`
|
|
|
2351
2351
|
await this.server.close();
|
|
2352
2352
|
};
|
|
2353
2353
|
while (true) {
|
|
2354
|
+
await stream2.sleep(6e4);
|
|
2354
2355
|
const sessionIds = Array.from(this.sseHonoTransports.keys() || []);
|
|
2355
2356
|
this.logger.debug("Active Hono SSE sessions:", { sessionIds });
|
|
2356
2357
|
await stream2.write(":keep-alive\n\n");
|
|
2357
|
-
await stream2.sleep(6e4);
|
|
2358
2358
|
}
|
|
2359
2359
|
} catch (e) {
|
|
2360
2360
|
const mastraError = new MastraError(
|