@kya-os/mcp-i
Version:
COMING SOON:Production-ready MCP Identity with automatic registration, key rotation, and optimized performance
17 lines (16 loc) • 651 B
TypeScript
import { MCPIdentityOptions, MCPIdentityProgressCallback } from './types.js';
import { MCPIdentity } from './index.js';
interface MCPIdentityCLIOptions extends Omit<MCPIdentityOptions, 'logLevel'> {
logLevel?: 'debug' | 'info' | 'warn' | 'error' | 'silent';
onProgress?: MCPIdentityProgressCallback;
}
export declare function enableMCPIdentityCLI(options?: MCPIdentityCLIOptions): Promise<{
identity: MCPIdentity;
metadata: {
isNewIdentity: boolean;
did: string;
claimUrl?: string;
registryUrl: string;
};
}>;
export type { MCPIdentityProgressEvent, MCPIdentityProgressCallback } from './types.js';