@kya-os/mcp-i
Version:
The TypeScript MCP framework with identity features built-in
5 lines (4 loc) • 320 B
TypeScript
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>;