@kya-os/mcp-i
Version:
The TypeScript MCP framework with identity features built-in
17 lines (16 loc) • 598 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.configSchema = void 0;
const zod_1 = require("zod");
const schemas_1 = require("./schemas");
/**
* xmcp Config schema
*/
exports.configSchema = zod_1.z.object({
stdio: schemas_1.stdioTransportConfigSchema.optional(),
http: schemas_1.httpTransportConfigSchema.optional(),
experimental: schemas_1.experimentalConfigSchema.optional(),
paths: schemas_1.pathsConfigSchema.optional(),
webpack: schemas_1.webpackConfigSchema.optional(),
identity: schemas_1.identityConfigSchema.optional(),
});