UNPKG

markdown-editor-mcp

Version:

MCP server for markdown editing and management

25 lines (24 loc) 878 B
import { ServerResult } from '../types.js'; /** * Start a new process (renamed from execute_command) * Includes early detection of process waiting for input */ export declare function startProcess(args: unknown): Promise<ServerResult>; /** * Read output from a running process (renamed from read_output) * Includes early detection of process waiting for input */ export declare function readProcessOutput(args: unknown): Promise<ServerResult>; /** * Interact with a running process (renamed from send_input) * Automatically detects when process is ready and returns output */ export declare function interactWithProcess(args: unknown): Promise<ServerResult>; /** * Force terminate a process */ export declare function forceTerminate(args: unknown): Promise<ServerResult>; /** * List active sessions */ export declare function listSessions(): Promise<ServerResult>;