← Discover MCPs and Agents
X
MCPDeveloper toolsGitHub

XcodeBuildMCP_Workshop

Links

README

From the repo.

Atmos Weather

Atmos Weather is a native SwiftUI weather app with a Node.js backend API. The repo doubles as the example project for the Sentry XcodeBuildMCP workshop — see workshop/README.md for the per-act flow.

Project structure

.
  app/       iOS app (Xcode project; the agent's workspace during the workshop)
  backend/   API server (Hono + Node.js)
  workshop/  Stage branches, patches, switch script, host docs

Workshop flow (host)

./workshop/switch-stage.sh           # interactive act picker
cd app && claude                     # launch Claude Code rooted in app/

Launching Claude from app/ is the boundary that keeps backend/ and workshop/ invisible to the iOS-side agent. app/.mcp.json (managed by the switch script) registers XcodeBuildMCP; app/.xcodebuildmcp/config.yaml provides session defaults. Production-data stages (4/5) get the backend started automatically by switch-stage.sh.

Backend

Start the API server:

cd backend
npm install
npm run dev

The server runs on http://localhost:3001 by default. Set PORT to change it.

iOS app

Build and run with XcodeBuildMCP from the app/ directory:

cd app
xcodebuildmcp simulator build-and-run

Weather data source defaults

The app does not support runtime data-source selection via launch arguments.

  • main and workshop stages 1/2/3 default to mock weather data.
  • Workshop stages 4/5 default to the production backend at http://localhost:3001/v1.

Start the backend before running production-data stages.

Tests

xcodebuildmcp simulator test

UI tests inherit the branch's hardcoded weather data default. On production-data stages, ensure the backend is running.

API endpoints

The backend serves three GET endpoints under /v1:

PurposePathParams
Default locations/v1/locations/defaultNone
Search locations/v1/locations/search?query=<string>
Weather report/v1/weather/:locationIDPath param

JSON schemas

Schema files in backend/schemas/ describe the expected response shapes:

  • default-locations.schema.json
  • search-locations.schema.json
  • weather-report.schema.json

Test fixtures

Fixture JSON files in app/WeatherTests/Fixtures/ are used by unit tests.

Collected info

  • 1 stars
  • 1 forks
  • Language: Swift
  • Source updated: 5/12/2026

Config for your environment

Replace {MCP_ENDPOINT_URL} with this MCP’s endpoint URL (from its repo or docs above). No API key — you connect directly.

Tool

OS

Config file: ~/.cursor/mcp.json

{
  "mcpServers": {
    "mcp-server": {
      "url": "{MCP_ENDPOINT_URL}"
    }
  }
}

Paste into mcpServers in the config file. Restart Cursor after saving.

If this MCP is also published on mcpchannel.ai, you can subscribe from Browse and use the gateway config there instead.