MCPcopy Index your code
hub / github.com/getsentry/XcodeBuildMCP / invokeXcodeIdeTool

Method invokeXcodeIdeTool

src/cli/daemon-client.ts:308–317  ·  view source on GitHub ↗

* Invoke a dynamic xcode-ide bridge tool through the daemon-managed bridge session.

(
    remoteTool: string,
    args: Record<string, unknown>,
  )

Source from the content-addressed store, hash-verified

306 * Invoke a dynamic xcode-ide bridge tool through the daemon-managed bridge session.
307 */
308 async invokeXcodeIdeTool(
309 remoteTool: string,
310 args: Record<string, unknown>,
311 ): Promise<DaemonToolResult> {
312 const result = await this.request<XcodeIdeInvokeResult>('xcode-ide.invoke', {
313 remoteTool,
314 args,
315 } satisfies XcodeIdeInvokeParams);
316 return result.result;
317 }
318
319 /**
320 * Check if daemon is running by attempting to connect.

Callers 2

executeToolMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected