Skip to content

v1.3.0 - Tool Filtering 🛠️⚙️

Choose a tag to compare

@joshuayoes joshuayoes released this 05 Apr 16:42
551551f

iOS Simulator MCP v1.3.0

New Features

  • Tool Filtering via Environment Variables
    • Filter specific tools using the new IOS_SIMULATOR_MCP_FILTERED_TOOLS environment variable
    • Customizable filtering options:
      • Comma-separated list of tool names to disable
      • Supports all available tool types
      • No impact on non-filtered tools
    • Use Case: prevent Cursor Agent mode from selecting tools it cannot use for context as of writing this like screenshot by removing it from the available tools that are available.
      {
        "env": {
          "IOS_SIMULATOR_MCP_FILTERED_TOOLS": "screenshot"
        }
      }
    • Use Case: Disable resource-intensive tools like video recording:
      {
        "env": {
          "IOS_SIMULATOR_MCP_FILTERED_TOOLS": "record_video,stop_recording"
        }
      }

With Filtering

Config Cursor Settings
Screenshot 2025-04-05 at 9 31 27 AM Screenshot 2025-04-05 at 9 31 34 AM

Without Filtering

Config Cursor Settings
Screenshot 2025-04-05 at 9 31 45 AM Screenshot 2025-04-05 at 9 31 53 AM

Documentation Updates

  • Added new Configuration section in README
  • Added environment variable documentation
  • Included examples of tool filtering usage