ios-simulator-mcp is an MCP server that lets an AI agent inspect and control iOS simulators, including their available information, interface elements, and UI interactions. Developers use it to automate or examine applications running in the iOS Simulator. The catalogue entries provide instructions and commands for operating the server.
Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add commands/joshuayoes/ios-simulator-mcp/create-releasegit clone --depth 1 https://github.com/joshuayoes/ios-simulator-mcpWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/joshuayoes/ios-simulator-mcp/create-release)<a href="https://agentmods.dev/commands/joshuayoes/ios-simulator-mcp/create-release"><img src="https://agentmods.dev/badge/commands/joshuayoes/ios-simulator-mcp/create-release.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.00494 |
| Opus 5 | $0.00000 | $0.00247 |
| Sonnet 5 | $0.00000 | $0.00099 |
| Haiku 4.5 | $0.00000 | $0.00049 |
Grade A, and why
create-release scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 63 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Create GitHub Release from Changes Since Last Tag
Create a GitHub release based on commits since the previous tag. Generate release notes, create the release using the GitHub CLI, and verify the post-release workflow status.
Gather Information
- Get the new version from
package.jsonversion key - Get the previous tag using
git describe --tags --abbrev=0 - Get the target commit SHA using
git rev-parse HEAD
Steps
-
Get Git Diff: Look at all the changes between the previous tag and HEAD:
git --no-pager diff <PREVIOUS_REF> -
Format Release Notes: Take the raw git diff and format it into Markdown using this structure:
# iOS Simulator MCP <NEW_VERSION> ## Features - **Feature Name:** Description... ## Improvements - **Improvement Name:** Description... ## Documentation - **Doc Update:** Description... ## Build - **Version Bump:** Updated the project version to <NEW_VERSION>. -
Create Temporary Notes File: Save the formatted markdown notes into
TEMP.md. This avoids shell quoting/escaping issues.⚠️ STOP and ask for review before proceeding. Creating a release will trigger a GitHub action that is too fast to cancel if triggered by mistake.
-
Create GitHub Release: Use the
ghCLI to create the release:gh release create <NEW_VERSION> --target <TARGET_SHA> --title "<RELEASE_TITLE>" --notes-file TEMP.md --latestFor the title, use format:
<NEW_VERSION> - <SUMMARY>where summary is the most significant change in 5 words or less. Consider adding an emoji at the end if it matches well. -
Clean Up: Remove the temporary notes file:
rm TEMP.md -
Verify Workflow Status: Check the status of the workflow run triggered by the release:
gh run list --limit 1 --json name,status,conclusion,event,url --jq '.[0]' | catThe
conclusionfield should besuccess.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 6d ago First seen · 63 lines · 0 tokens per session scan A 829c5b771876
create-release is a command published in the GitHub repository joshuayoes/ios-simulator-mcp (2,165 stars, last pushed 23d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 494 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
push-and-release
Git pull, resolve conflicts, push, fix hook errors, then release.
land
Cadence-tick autonomous PR babysitter (CI-fix, resolve, converge, merge, close, release).
release
Create a release branch, run changeset version, review changelog, and prepare PR.
release-notes
Generate consistent, well-structured release notes from git history. Triggered on release tags following semver patterns (v..) to produce categorized changelog with breaking changes, features, fixes, and contributor attribution.
release
Walk the llmwiki release process step by step.
ship
Ship is the operational release-prep flow for a connected project repo.