mcp-setup — MCP setup mcp-setup, unamentis, community, MCP setup, ide skills, Claude Code skill, iOS simulator, Xcode build, AI driven learning

v1.0.0

About this Skill

Perfect for iOS Development Agents requiring streamlined Xcode build operations and simulator management. MCP setup is a skill that configures Model Context Protocol session defaults for AI driven learning assistants.

Features

Configures MCP session defaults for iOS simulator
Sets correct project, scheme, and simulator settings
Ensures proper MCP defaults for Xcode build operations
Supports AI driven learning assistants
Compatible with Claude Code and other AI coding assistants
Streamlines build and test operations

# Core Topics

UnaMentis UnaMentis
[5]
[1]
Updated: 3/8/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reviewed Landing Page Review Score: 10/11

Killer-Skills keeps this page indexable because it adds recommendation, limitations, and review signals beyond the upstream repository text.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review Locale and body language aligned
Review Score
10/11
Quality Score
51
Canonical Locale
en
Detected Body Locale
en

Perfect for iOS Development Agents requiring streamlined Xcode build operations and simulator management. MCP setup is a skill that configures Model Context Protocol session defaults for AI driven learning assistants.

Core Value

Empowers agents to configure MCP session defaults for iOS simulator and Xcode build operations, ensuring correct project, scheme, and simulator settings using Model Context Protocol (MCP) and Xcode build operations.

Ideal Agent Persona

Perfect for iOS Development Agents requiring streamlined Xcode build operations and simulator management.

Capabilities Granted for mcp-setup

Configuring MCP session defaults for main iOS app development
Setting up Server Manager for iOS simulator testing
Automating Xcode build operations with predefined MCP settings

! Prerequisites & Limits

  • Requires Xcode installation
  • Limited to iOS simulator and Xcode build operations
  • MCP defaults must be set before building

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is mcp-setup?

Perfect for iOS Development Agents requiring streamlined Xcode build operations and simulator management. MCP setup is a skill that configures Model Context Protocol session defaults for AI driven learning assistants.

How do I install mcp-setup?

Run the command: npx killer-skills add UnaMentis/unamentis/mcp-setup. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for mcp-setup?

Key use cases include: Configuring MCP session defaults for main iOS app development, Setting up Server Manager for iOS simulator testing, Automating Xcode build operations with predefined MCP settings.

Which IDEs are compatible with mcp-setup?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for mcp-setup?

Requires Xcode installation. Limited to iOS simulator and Xcode build operations. MCP defaults must be set before building.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add UnaMentis/unamentis/mcp-setup. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use mcp-setup immediately in the current project.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

mcp-setup

Install mcp-setup, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

/mcp-setup - MCP Session Configuration

Purpose

Configures MCP (Model Context Protocol) session defaults for iOS simulator and Xcode build operations. This skill ensures the correct project, scheme, and simulator are set before any build or test operations.

Critical Rule: MCP defaults MUST be set before building. Building without proper defaults will fail.

Usage

/mcp-setup ios        # Configure for main iOS app (default)
/mcp-setup usm        # Configure for Server Manager app
/mcp-setup show       # Show current session defaults
/mcp-setup clear      # Clear session defaults

Configurations

iOS App (default)

Project: $PROJECT_ROOT/UnaMentis.xcodeproj
Scheme: UnaMentis
Simulator: iPhone 16 Pro

Server Manager (USM)

Workspace: $PROJECT_ROOT/server/server-manager/USMXcode/USM.xcworkspace
Scheme: USM
Simulator: iPhone 16 Pro

Where $PROJECT_ROOT is the absolute path to the unamentis repository on this machine (the current working directory).

Workflow

1. Set Session Defaults

For iOS app:

mcp__XcodeBuildMCP__session-set-defaults({
  projectPath: "$PROJECT_ROOT/UnaMentis.xcodeproj",
  scheme: "UnaMentis",
  simulatorName: "iPhone 16 Pro"
})

For USM:

mcp__XcodeBuildMCP__session-set-defaults({
  workspacePath: "$PROJECT_ROOT/server/server-manager/USMXcode/USM.xcworkspace",
  scheme: "USM",
  simulatorName: "iPhone 16 Pro"
})

Note: Replace $PROJECT_ROOT with the actual absolute path to the unamentis directory (use pwd in the project root to get this).

2. Verify Configuration

mcp__XcodeBuildMCP__session-show-defaults()

3. Confirm Simulator Available

mcp__XcodeBuildMCP__list_sims()

Ensure the target simulator exists and is available.

Success Criteria

  • Session defaults set successfully
  • Scheme is valid for the project
  • Simulator exists and is available

Examples

Configure for iOS development:

User: /mcp-setup ios
Claude: Configuring MCP for iOS app development...

Setting defaults:
- Project: UnaMentis.xcodeproj
- Scheme: UnaMentis
- Simulator: iPhone 16 Pro

Configuration complete. You can now use:
- /ios-build or build commands
- MCP simulator tools

Configure for USM development:

User: /mcp-setup usm
Claude: Configuring MCP for Server Manager development...

Setting defaults:
- Workspace: USM.xcworkspace
- Scheme: USM
- Simulator: iPhone 16 Pro

Configuration complete. Ready to build USM.

Show current configuration:

User: /mcp-setup show
Claude: Current MCP session defaults:

Project: $PROJECT_ROOT/UnaMentis.xcodeproj
Scheme: UnaMentis
Simulator: iPhone 16 Pro (ID: 12345678-1234-1234-1234-123456789ABC)
Configuration: Debug

Clear configuration:

User: /mcp-setup clear
Claude: Clearing MCP session defaults...

All session defaults cleared. Run /mcp-setup ios or /mcp-setup usm to reconfigure.

Available Simulators

Common simulators (verify with list_sims):

  • iPhone 16 Pro (preferred for CI parity)
  • iPhone 17 Pro
  • iPhone 15 Pro
  • iPad Pro 13-inch

Note: iPhone 16 Pro is the default to match CI. The test runner includes automatic fallback to other available simulators if the preferred one is not found.

Integration

This skill should be run:

  • At the start of a development session
  • When switching between iOS app and USM development
  • Before any build or test operations
  • When the simulator needs to change

Related Skills

Looking for an alternative to mcp-setup or another community skill for your workflow? Explore these related open-source skills.

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Developer