@kya-os/cli
Version:
CLI for MCP-I setup and management
22 lines • 798 B
TypeScript
interface ClaimOptions {
json?: boolean;
saveReceipt?: boolean;
receiptPath?: string;
}
/**
* Claim an agent with a token or retrieve management URLs
*
* This command serves two purposes:
* 1. With token: Attempts to claim ownership of an agent using a claim token
* 2. Without token: Retrieves management URLs for the current agent
*
* The claim process requires authentication through a web browser as it uses
* NextAuth for user verification. The CLI generates the claim URL which must
* be opened in a browser to complete the claim process.
*
* @param token - Optional claim token from registration
* @param options - Command options
*/
export declare function claim(token?: string, options?: ClaimOptions): Promise<void>;
export {};
//# sourceMappingURL=claim.d.ts.map