AI agents & MCP

MacOps is built to be driven by AI coding agents — Claude, Cursor, Codex and Gemini — so an agent can build, test and ship your iOS app end to end.

MCP server

The macops CLI is the MCP server — run macops mcp and it speaks the Model Context Protocol over stdio, exposing tools to create projects, run builds across the version matrix, stream logs, fetch artifacts and deploy. It reuses your macops login, so setup is one key. Add it to any MCP-capable agent (Claude Code, Claude Desktop, Cursor, …):

{
  "mcpServers": {
    "macops": { "command": "macops", "args": ["mcp"] }
  }
}

Already authenticated via macops login? Nothing else to configure. Otherwise set MACOPS_URL and MACOPS_API_KEY in the server's env.

Claude skill

Give Claude Code first-class MacOps commands by dropping in the skill:

mkdir -p .claude/skills/macops
curl -fsSL https://macops.co.uk/skill/macops/SKILL.md -o .claude/skills/macops/SKILL.md

It teaches the agent the build → test → diagnose → ship workflow on top of the MCP tools above.

Any agent, one key

Everything an agent does goes through the same API key and REST API as the CLI — see the AI agents overview and the API reference.