UNPKG

mcp-xcode

Version:

MCP server that wraps Xcode command-line tools for iOS/macOS development workflows

43 lines 1.57 kB
import { executeCommand } from '../../utils/command.js'; import { McpError, ErrorCode } from '@modelcontextprotocol/sdk/types.js'; export async function xcodebuildShowSDKsTool(args) { const { outputFormat = 'json' } = args; try { // Build command const command = outputFormat === 'json' ? 'xcodebuild -showsdks -json' : 'xcodebuild -showsdks'; // Execute command const result = await executeCommand(command); if (result.code !== 0) { throw new McpError(ErrorCode.InternalError, `Failed to show SDKs: ${result.stderr}`); } let responseText; if (outputFormat === 'json') { try { // Parse and format JSON response const sdkInfo = JSON.parse(result.stdout); responseText = JSON.stringify(sdkInfo, null, 2); } catch (parseError) { throw new McpError(ErrorCode.InternalError, `Failed to parse xcodebuild -showsdks output: ${parseError}`); } } else { responseText = result.stdout; } return { content: [ { type: 'text', text: responseText, }, ], }; } catch (error) { if (error instanceof McpError) { throw error; } throw new McpError(ErrorCode.InternalError, `xcodebuild-showsdks failed: ${error instanceof Error ? error.message : String(error)}`); } } //# sourceMappingURL=showsdks.js.map