
iOS Development Bridge (idb)
โ 6from noahlozevski
Interact with iOS simulators and devices using Facebook's iOS Development Bridge (idb).
mcp-idb
MCP server integration for Facebook's iOS Development Bridge (idb).
Overview
This package provides integration between MCP (Model Context Protocol) and Facebook's idb (iOS Development Bridge), enabling automated iOS device management and test execution through MCP.
Start the server:
npx -y @noahlozevski/mcp-idbDevelopment
Code Formatting
This project uses Prettier for code formatting. To format your code:
npm run format # Format all filesThe formatting configuration can be found in .prettierrc at the root of the project.
npx -y @noahlozevski/mcp-idbPrerequisites
Installing idb
To install idb:
brew tap facebook/fb
brew install idb-companion
# verify installation
idbFor more details, visit the official idb GitHub repository.
Configuration
mcp-config.json Setup
To use idb in your MCP configuration, add the following to your mcp-config.json:
{
"mcpServers": {
"idb": {
"command": "npx",
"args": ["-y", "@noahlozevski/idb"]
}
}
}Example use cases include:
- Automated test development
- Screenshot testing
- Automated interactions ("tap the home button on the screen")
- Installing / removing applications
Troubleshooting
Common issues and solutions:
- idb companion not found: Ensure idb-companion is installed via Homebrew
- Device not detected: Make sure the iOS device is:
- Connected via USB
- Trusted on the computer
- Has developer mode enabled
Licensed under MITโ you can use, modify, and redistribute it under that license's terms.
License
This project is part of Mobile Control Plane (MCP) and follows Amazon's internal licensing policies.