UNPKG

twenty-mcp-server

Version:

Easy-to-install Model Context Protocol server for Twenty CRM. Try instantly with 'npx twenty-mcp-server setup' or install globally for permanent use.

16 lines 486 B
import { ClerkClient } from './clerk-client.js'; export interface TokenValidationResult { valid: boolean; userId?: string; sessionId?: string; error?: string; } export declare class TokenValidator { private clerkClient; private cache; constructor(clerkClient: ClerkClient); validateBearerToken(authHeader: string | undefined): Promise<TokenValidationResult>; private cleanCache; clearCache(): void; } //# sourceMappingURL=token-validator.d.ts.map