UNPKG

@steipete/terminator-mcp

Version:

MCP plugin to manage macOS terminal sessions.

12 lines (11 loc) 483 B
import { SdkCallContext } from './types.js'; export declare const SWIFT_CLI_NAME = "terminator"; export declare const SWIFT_CLI_PATH: string; export interface SwiftCLIResult { stdout: string; stderr: string; exitCode: number | null; cancelled?: boolean; internalTimeoutHit?: boolean; } export declare function invokeSwiftCLI(cliArgs: string[], terminatorEnv: Record<string, string>, mcpContext: SdkCallContext, wrapperTimeoutMs: number): Promise<SwiftCLIResult>;