๐ ๐ ๐ A Model Context Protocol (MCP) server that enables LLMs to interact with iOS simulators (iPhone, iPad, etc.) through natural language commands.
MCP Server for iOS Simulator โ A Model Context Protocol (MCP) server that enables Large Language Models (LLMs) to interact with iOS simulators using natural language commands.
Add this mcp to cline https://github.com/InditexTech/mcp-server-simulator-ios-idb
git clone https://github.com/InditexTech/mcp-server-simulator-ios-idb.git cd mcp-server-simulator-ios-idb npm install npm run build npm start
Configure the server in your LLM (e.g., Claude Desktop) to enable natural language control:
{ "mcpServers": { "ios-simulator": { "command": "node", "args": ["/path/to/mcp-server-simulator-ios-idb/dist/index.js"], "env": {} } } }
Import and use in your own projects:
import { createMCPServer } from 'mcp-server-simulator-ios-idb'; const { orchestrator } = createMCPServer(); await orchestrator.processInstruction('tap at 100, 200');
For more details, check the Supported Commands and Project Structure sections. ๐
๐ โ an openAI middleware proxy to use mcp in any existing openAI compatible client
๐ โ framework to build vertical AI agent
๐ โ Use MCP provided tools in LangChain.js
A CLI host application that enables Large Language Models (LLMs) to interact with external tools through the Model Context Protocol (MCP).