-
-
Notifications
You must be signed in to change notification settings - Fork 216
Description
Summary
In xcodebuildmcp v2.1.0, docs list xcode-ide CLI tools (list-tools, call-tool, bridge-status, bridge-sync, bridge-disconnect), but the actual CLI command surface does not expose xcode-ide at all.
This creates a mismatch where:
- MCP server mode appears to register
xcode-ide, - but direct CLI mode cannot invoke any
xcode-idecommands.
Environment
- macOS: Darwin 25.3.0
- Xcode: 26.3 (17C529)
- xcodebuildmcp: 2.1.0
- Install methods tested:
- Homebrew (
getsentry/xcodebuildmcp) - npm/npx (
xcodebuildmcp@2.1.0and@latest)
- Homebrew (
Config
.xcodebuildmcp/config.yaml includes:
schemaVersion: 1
enabledWorkflows:
- xcode-ide
- simulator
- simulator-management
- logging
- project-discovery
- utilities
- ui-automation
- debugging
- doctor
debug: truemcpbridge is installed and available:
xcrun --find mcpbridge
# /Applications/Xcode.app/Contents/Developer/usr/bin/mcpbridgeRepro steps
- Verify version:
xcodebuildmcp --version
# 2.1.0- Check top-level CLI workflows:
xcodebuildmcp --helpObserved: no xcode-ide command group listed.
- Check tool catalog:
xcodebuildmcp tools --json | jq -r '.workflows[].workflow'Observed workflows:
- debugging
- device
- doctor
- logging
- macos
- project-discovery
- project-scaffolding
- simulator
- simulator-management
- swift-package
- ui-automation
- utilities
Observed: xcode-ide missing.
- Attempt to invoke documented CLI commands:
xcodebuildmcp xcode-ide list-tools
xcodebuildmcp xcode-ide bridge-statusObserved: unknown argument/command.
- Start MCP mode with debug:
xcodebuildmcp --log-level debug mcpObserved logs include:
- registered workflows include
xcode-ide xcode-ide-stateresource loaded
This suggests xcode-ide exists in MCP runtime but not in CLI command registration.
Expected behavior
Given docs (docs/TOOLS-CLI.md, docs/XCODE_IDE_MCPBRIDGE.md) and enabled config, CLI should expose:
xcodebuildmcp xcode-ide list-toolsxcodebuildmcp xcode-ide call-toolxcodebuildmcp xcode-ide bridge-statusxcodebuildmcp xcode-ide bridge-syncxcodebuildmcp xcode-ide bridge-disconnect
Actual behavior
xcode-ide workflow is absent from CLI help/tools output and cannot be invoked, despite being documented and apparently registered in MCP mode logs.
Additional notes
Same behavior with:
- Homebrew binary
npx -y xcodebuildmcp@2.1.0npx -y xcodebuildmcp@latest
So this does not seem install-method specific.