Assistent für Xcode Mcp For Pi Agent

💬 Text🌐 CC0

Hilft dir, technische Aufgaben in klare Schritte zu zerlegen, sauber umzusetzen und typische Fehler früh zu vermeiden, damit du schneller zu belastbar

Prompt


name: xcode-mcp-for-pi-agent description: Guidelines for efficient Xcode MCP tool usage via mcporter CLI. This skill should be used to understand when to use Xcode MCP tools vs standard tools. Xcode MCP consumes many tokens - use only for build, test, simulator, preview, and SourceKit diagnostics. Never use for file read/write/grep operations. Use this skill whenever working with Xcode projects, iOS/macOS builds, SwiftUI previews, or Apple platform development.

Xcode MCP Usage Guidelines

Xcode MCP tools are accessed via mcporter CLI, which bridges MCP servers to standard command-line tools. This skill defines when to use Xcode MCP and when to prefer standard tools.

Setup

Xcode MCP must be configured in ~/.mcporter/mcporter.json:

{
  "mcpServers": {
    "xcode": {
      "command": "xcrun",
      "args": ["mcpbridge"],
      "env": {}
    }
  }
}

Verify the connection:

mcporter list xcode

Calling Tools

All Xcode MCP tools are called via mcporter:

# List available tools
mcporter list xcode

# Call a tool with key:value args
mcporter call xcode.<tool_name> param1:value1 param2:value2

# Call with function-call syntax
mcporter call 'xcode.<tool_name>(param1: "value1", param2: "value2")'

Complete Xcode MCP Tools Reference

Window & Project Management

Toolmcporter callToken Cost
List open Xcode windows (get tabIdentifier)mcporter call xcode.XcodeListWindowsLow ✓

Build Operations

Toolmcporter callToken Cost
Build the Xcode projectmcporter call xcode.BuildProjectMedium ✓
Get build log with errors/warningsmcporter call xcode.GetBuildLogMedium ✓
List issues in Issue Navigatormcporter call xcode.XcodeListNavigatorIssuesLow ✓

Testing

Toolmcporter callToken Cost
Get available tests from test planmcporter call xcode.GetTestListLow ✓
Run all testsmcporter call xcode.RunAllTestsMedium
Run specific tests (preferred)mcporter call xcode.RunSomeTestsMedium ✓

Preview & Execution

Toolmcporter callToken Cost
Render SwiftUI Preview snapshotmcporter call xcode.RenderPreviewMedium ✓
Execute code snippet in file contextmcporter call xcode.ExecuteSnippetMedium ✓

Diagnostics

Toolmcporter callToken Cost
Get compiler diagnostics for specific filemcporter call xcode.XcodeRefreshCodeIssuesInFileLow ✓
Get SourceKit diagnostics (all open files)mcporter call xcode.getDiagnosticsLow ✓

Documentation

Toolmcporter callToken Cost
Search Apple Developer Documentationmcporter call xcode.DocumentationSearchLow ✓

File Operations (HIGH TOKEN - NEVER USE)

MCP ToolUse InsteadWhy
xcode.XcodeReadRead tool / catHigh token consumption
xcode.XcodeWriteWrite toolHigh token consumption
xcode.XcodeUpdateEdit toolHigh token consumption
xcode.XcodeGreprg / grepHigh token consumption
xcode.XcodeGlobfind / globHigh token consumption
xcode.XcodeLSls commandHigh token consumption
xcode.XcodeRMrm commandHigh token consumption
xcode.XcodeMakeDirmkdir commandHigh token consumption
xcode.XcodeMVmv commandHigh token consumption

Recommended Workflows

1. Code Change & Build Flow

1. Search code      → rg "pattern" --type swift
2. Read file        → Read tool / cat
3. Edit file        → Edit tool
4. Syntax check     → mcporter call xcode.getDiagnostics
5. Build            → mcporter call xcode.BuildProject
6. Check errors     → mcporter call xcode.GetBuildLog (if build fails)

2. Test Writing & Running Flow

1. Read test file   → Read tool / cat
2. Write/edit test  → Edit tool
3. Get test list    → mcporter call xcode.GetTestList
4. Run tests        → mcporter call xcode.RunSomeTests (specific tests)
5. Check results    → Review test output

3. SwiftUI Preview Flow

1. Edit view        → Edit tool
2. Render preview   → mcporter call xcode.RenderPreview
3. Iterate          → Repeat as needed

4. Debug Flow

1. Check diagnostics → mcporter call xcode.getDiagnostics
2. Build project     → mcporter call xcode.BuildProject
3. Get build log     → mcporter call xcode.GetBuildLog severity:error
4. Fix issues        → Edit tool
5. Rebuild           → mcporter call xcode.BuildProject

5. Documentation Search

1. Search docs       → mcporter call xcode.DocumentationSearch query:"SwiftUI NavigationStack"
2. Review results    → Use information in implementation

Fallback Commands (When MCP or mcporter Unavailable)

If Xcode MCP is disconnected, mcporter is not installed, or the connection fails, use these xcodebuild commands directly:

Build Commands

# Debug build (simulator) - replace <SchemeName> with your project's scheme
xcodebuild -scheme <SchemeName> -configuration Debug -sdk iphonesimulator build

# Release build (device)
xcodebuild -scheme <SchemeName> -configuration Release -sdk iphoneos build

# Build with workspace (for CocoaPods projects)
xcodebuild -workspace <ProjectName>.xcworkspace -scheme <SchemeName> -configuration Debug -sdk iphonesimulator build

# Build with project file
xcodebuild -project <ProjectName>.xcodeproj -scheme <SchemeName> -configuration Debug -sdk iphonesimulator build

# List available schemes
xcodebuild -list

Test Commands

# Run all tests
xcodebuild test -scheme <SchemeName> -sdk iphonesimulator \
  -destination "platform=iOS Simulator,name=iPhone 16" \
  -configuration Debug

# Run specific test class
xcodebuild test -scheme <SchemeName> -sdk iphonesimulator \
  -destination "platform=iOS Simulator,name=iPhone 16" \
  -only-testing:<TestTarget>/<TestClassName>

# Run specific test method
xcodebuild test -scheme <SchemeName> -sdk iphonesimulator \
  -destination "platform=iOS Simulator,name=iPhone 16" \
  -only-testing:<TestTarget>/<TestClassName>/<testMethodName>

# Run with code coverage
xcodebuild test -scheme <SchemeName> -sdk iphonesimulator \
  -configuration Debug -enableCodeCoverage YES

# List available simulators
xcrun simctl list devices available

Clean Build

xcodebuild clean -scheme <SchemeName>

Quick Reference

USE mcporter + Xcode MCP For:

  • xcode.BuildProject — Building
  • xcode.GetBuildLog — Build errors
  • xcode.RunSomeTests — Running specific tests
  • xcode.GetTestList — Listing tests
  • xcode.RenderPreview — SwiftUI previews
  • xcode.ExecuteSnippet — Code execution
  • xcode.DocumentationSearch — Apple docs
  • xcode.XcodeListWindows — Get tabIdentifier
  • xcode.getDiagnostics — SourceKit errors

NEVER USE Xcode MCP For:

  • xcode.XcodeRead → Use Read tool / cat
  • xcode.XcodeWrite → Use Write tool
  • xcode.XcodeUpdate → Use Edit tool
  • xcode.XcodeGrep → Use rg or grep
  • xcode.XcodeGlob → Use find / glob
  • xcode.XcodeLS → Use ls command
  • ❌ File operations → Use standard tools

Token Efficiency Summary

OperationBest ChoiceToken Impact
Quick syntax checkmcporter call xcode.getDiagnostics🟢 Low
Full buildmcporter call xcode.BuildProject🟡 Medium
Run specific testsmcporter call xcode.RunSomeTests🟡 Medium
Run all testsmcporter call xcode.RunAllTests🟠 High
Read fileRead tool / cat🟢 Low
Edit fileEdit tool🟢 Low
Search coderg / grep🟢 Low
List filesls / find🟢 Low

Öffnen in

Ähnliche Community Prompts

Compliance-Berater

🌐 CC0

Strukturiert Compliance-Berater mit klaren Anforderungen und umsetzbaren Schritten, damit Entwicklung, Review und Iteration schneller und sauberer.

CodingSchreibenBildung

Schreib-Assistent

🌐 CC0

Unterstützt dich bei Schreib Assistent mit strukturierten Schritten, klaren Anforderungen und umsetzbaren Ergebnissen für schnellere, saubere Umset...

SchreibenBildungCoding

Workplace English Speaking Coach

🌐 CC0

Unterstützt dich bei Workplace English Speaking Coach mit strukturierten Schritten, klaren Anforderungen und umsetzbaren Ergebnissen für schnellere...

CodingSchreibenBildung

ℹ️ Dieser Prompt stammt aus der Open-Source-Community-Sammlung prompts.chat und steht unter der CC0-Lizenz (Public Domain). Kostenlos für jeden Einsatz.

Quelle: prompts.chatBeitrag von: ilkerulusoyLizenz: CC0