xc-mcp
Version:
MCP server that wraps Xcode command-line tools for iOS/macOS development workflows
19 lines • 618 B
TypeScript
/**
* Build and Run Workflow Orchestration
*
* Combines build, simulator selection, installation, and launch into a single orchestrated workflow.
* Handles the entire app development cycle: build project → boot simulator → install app → launch app.
*
* Full documentation: See src/tools/workflows/build-and-run.md
*
* @param args Workflow arguments
* @returns Complete workflow result with all steps
*/
export declare function buildAndRunTool(args: any): Promise<{
content: {
type: "text";
text: string;
}[];
isError: boolean;
}>;
//# sourceMappingURL=build-and-run.d.ts.map