mcp-tools

Automates Xcode builds and Apple documentation lookup via XcodeBuildMCP and apple-docs MCP servers.

1|Updated Jul 29, 2026
One-click install
npx skills add https://github.com/fusengine/kimi-code --skill mcp-tools-fusengine
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: mcp-tools
Source: https://github.com/fusengine/kimi-code/tree/main/plugins/swift-apple-expert/skills/mcp-tools
Command: npx skills add https://github.com/fusengine/kimi-code --skill mcp-tools-fusengine

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires xcodebuildmcp, @kimsungwhee/apple-docs-mcp, and includes references (resource) components.

What problem does it solve? Swift developers waste time manually building Xcode projects to validate changes and hunting through Apple documentation and WWDC sessions for API guidance. This Skill wires two MCP servers into the workflow so builds are validated automatically after every code change and official Apple documentation is queried first. ## Core Features & Use Cases - Xcode Build Automation: Discover projects, list schemes, build for macOS/iOS Simulator/device, clean builds, and scaffold new projects via XcodeBuildMCP, with an autonomous build-fix-rebuild loop that only commits on zero errors. - Apple Docs & WWDC Lookup: Search all Apple frameworks, get symbol details, check API availability/deprecation, and access WWDC sessions 2014-2025 with offline transcripts via the apple-docs MCP server. - Mandatory Research-First Workflow: Enforces a priority order of Apple Docs MCP, then Context7 for third-party libraries, then Exa web search before writing code. - Use Case: After editing a SwiftUI view, the agent builds the project with XcodeBuildMCP, reads any compiler errors, fixes them, rebuilds, and only commits when the build is clean. ## Quick Start Ask the agent to build the current Xcode project for the iOS Simulator and fix any compilation errors it finds.

Frequently Asked Questions about mcp-tools

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate Xcode builds from an AI agent?▼

Install XcodeBuildMCP by adding it to your MCP configuration with npx -y xcodebuildmcp@latest. The agent can then discover projects, list schemes, build for macOS or iOS Simulator, read errors, and rebuild until the build is clean.

How to search Apple documentation and WWDC sessions offline?▼

Use the apple-docs MCP server (@kimsungwhee/apple-docs-mcp), which bundles WWDC sessions 2014-2025 with full transcripts in the npm package. It supports searching frameworks, symbol details, sample code, and API availability without network latency.

Should I use Apple Docs MCP or Context7 for Swift APIs?▼

Use Apple Docs MCP first for Apple frameworks like SwiftUI, UIKit, and Foundation since it provides official documentation and WWDC guidance. Reserve Context7 for third-party libraries and Exa web search for community tutorials.

Does XcodeBuildMCP support incremental builds?▼

Yes, XcodeBuildMCP supports incremental builds for faster compilation, but the feature is experimental and opt-in. It requires version 1.12.3 or later of the npm package.

Why does my Xcode build fail with scheme not found?▼

The scheme name may not match exactly or the wrong project file is targeted. Use the List Schemes tool to see available schemes and verify whether the build should use the .xcworkspace or .xcodeproj file.