MCPcopy Create free account
hub / github.com/getsentry/XcodeBuildMCP / formatRuntimeName

Function formatRuntimeName

src/mcp/tools/simulator/list_sims.ts:114–120  ·  view source on GitHub ↗
(runtime: string)

Source from the content-addressed store, hash-verified

112}
113
114function formatRuntimeName(runtime: string): string {
115 const match = runtime.match(/SimRuntime\.(.+)$/);
116 if (match) {
117 return match[1].replace(/-/g, '.').replace(/\.(\d)/, ' $1');
118 }
119 return runtime;
120}
121
122const NEXT_STEP_PARAMS = {
123 boot_sim: { simulatorId: 'UUID_FROM_ABOVE' },

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected