UNPKG

@kya-os/mcp-bri

Version:

Give your MCP server cryptographic identity in 2 lines of code

24 lines 589 B
"use strict"; /** * Auto-initialization for MCP Identity * * Just import this file to automatically enable MCP-I for any MCP server: * * ```typescript * import "@kya-os/mcp-i/auto"; * ``` * * That's it! Your MCP server now has identity. */ Object.defineProperty(exports, "__esModule", { value: true }); const index_1 = require("./index"); // Auto-initialize on import (async () => { try { await (0, index_1.enableMCPIdentity)(); } catch (error) { console.error('[MCP-I] Failed to auto-initialize:', error); } })(); //# sourceMappingURL=auto.js.map