You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -123,6 +123,12 @@ brew tap facebook/fb
123
123
brew install idb-companion
124
124
```
125
125
126
+
The idb client is also required but XcodeBuildMCP attmepts to install it for you. If you find that the UI automation features are still not available you can install the client manually using the following command (assumes you have Python installed):
127
+
128
+
```bash
129
+
pip install fb-idb==1.1.7
130
+
```
131
+
126
132
> [!IMPORTANT]
127
133
> Please note that UI automation features are currently in beta so there might be some rough edges. If you encounter any issues, please report them in the [issue tracker](https://github.com/cameroncooke/XcodeBuildMCP/issues).
Copy file name to clipboardExpand all lines: src/utils/idb-setup.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -163,7 +163,7 @@ export function setupIdb(): void {
163
163
}else{
164
164
log(
165
165
'warning',
166
-
`${LOG_PREFIX} fb-idb Python package could not be installed. UI automation features will not be available.`,
166
+
`${LOG_PREFIX} fb-idb Python package could not be installed. UI automation features will not be available. Try running 'pip install fb-idb==1.1.7' manually.`,
167
167
);
168
168
}
169
169
}else{
@@ -188,7 +188,7 @@ export function setupIdb(): void {
0 commit comments