UNPKG

@kya-os/mcp-i

Version:

The TypeScript MCP framework with identity features built-in

5 lines (4 loc) 320 B
import { Router, Request, Response, NextFunction } from "express"; import { OAuthRouterConfig } from "./types"; export declare function createOAuthRouter(config: OAuthRouterConfig): Router; export declare function createOAuthMiddleware(provider: any): (req: Request, res: Response, next: NextFunction) => Promise<void>;