@kya-os/mcp-i
Version:
COMING SOON:Production-ready MCP Identity with automatic registration, key rotation, and optimized performance
11 lines (10 loc) • 452 B
TypeScript
import { MCPIdentity } from "./index";
import { MCPIdentityOptions } from "./types";
export interface NextJSMCPOptions extends Omit<MCPIdentityOptions, "transport" | "storage"> {
storage?: "memory";
transport?: "fetch";
showSetupInstructions?: boolean;
}
export declare function enableMCPIdentityForNextJS(options?: NextJSMCPOptions): Promise<MCPIdentity>;
export { enableMCPIdentity, MCPIdentity } from "./index";
export * from "./types";