We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/plaintest/mcp-connect'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/bin/bash
echo "π§ Setting up iOS Simulator MCP Server..."
# Check if Homebrew is installed
if ! command -v brew &> /dev/null; then
echo "β Homebrew is not installed. Please install it from https://brew.sh/"
exit 1
fi
echo "β
Homebrew found"
# Check if idb is already installed
if command -v idb &> /dev/null; then
echo "β
fb-idb is already installed"
else
echo "π¦ Installing fb-idb (Facebook iOS Development Bridge)..."
brew tap facebook/fb
brew install idb-companion
if [ $? -eq 0 ]; then
echo "β
fb-idb installed successfully"
else
echo "β Failed to install fb-idb"
exit 1
fi
fi
# Install npm dependencies
echo "π¦ Installing npm dependencies..."
npm install
# Build the project
echo "π¨ Building the project..."
npm run build
if [ $? -eq 0 ]; then
echo "β
Build successful"
else
echo "β Build failed"
exit 1
fi
echo ""
echo "β
Setup complete!"
echo ""
echo "Next steps:"
echo "1. Make sure an iOS simulator is booted"
echo "2. Add this server to your Claude Code MCP config:"
echo ""
echo " {"
echo " \"mcpServers\": {"
echo " \"ios-simulator\": {"
echo " \"command\": \"node\","
echo " \"args\": [\"$(pwd)/dist/index.js\"]"
echo " }"
echo " }"
echo " }"
echo ""
echo "3. Restart Claude Code"
echo ""