@kya-os/mcp-i
Version:
COMING SOON:Production-ready MCP Identity with automatic registration, key rotation, and optimized performance
9 lines (8 loc) • 501 B
TypeScript
import { MCPIdentityOptions, PersistedIdentity } from './types';
export interface VercelMCPIdentityOptions extends MCPIdentityOptions {
envPrefix?: string;
showClaimInstructions?: boolean;
}
export declare function loadIdentityFromEnv(prefix?: string): PersistedIdentity | null;
export declare function generateEnvInstructions(identity: PersistedIdentity, prefix?: string): string;
export declare function showVercelDeveloperInstructions(identity: PersistedIdentity, claimUrl?: string): void;