/** * OAuth Dynamic Client Registration (RFC 7591) * * POST /oauth/register — allows MCP clients to register themselves * and receive a client_id for the authorization flow. */ import type { HarperRequest } from '../types.ts'; /** * Handle POST /oauth/register * * Accepts a registration request and stores the client in OAuthClient table. * Public clients (no client_secret) are the default — PKCE provides security. */ export declare function handleRegister(request: HarperRequest): Promise; //# sourceMappingURL=register.d.ts.map