@nestjs-mcp/server
Version:
Modular library for building scalable MCP servers with NestJS, providing decorators and integration patterns as a wrapper for the official MCP TypeScript SDK.
16 lines • 415 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ToolHandlerArgs = void 0;
class ToolHandlerArgs {
args;
extra;
constructor(extra, args) {
this.extra = extra;
this.args = args;
}
static from(extra, args) {
return new ToolHandlerArgs(extra, args);
}
}
exports.ToolHandlerArgs = ToolHandlerArgs;
//# sourceMappingURL=tool.args.js.map