UNPKG

trigger.dev

Version:

A Command-Line Interface for Trigger.dev projects

11 lines (10 loc) 394 B
import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import type { LoginResult } from "../utilities/session.js"; import type { McpContext } from "./context.js"; export type McpAuthOptions = { server: McpServer; context: McpContext; defaultApiUrl?: string; profile?: string; }; export declare function mcpAuth(options: McpAuthOptions): Promise<LoginResult>;