Releases: SoundBlaster/XcodeMCPWrapper
Release v0.3.3
- Fixed the BUG-T0 Uptime widget on Web UI always shows 1h 0m 0s #32
Version 0.3.2
Fix publishing to https://registry.modelcontextprotocol.io/?q=Xcode
Version 0.3.1
Version 0.3.1
Fixed issues
- FU-REBUILD-P10-T1-7: packaged Web UI static assets so --web-ui serves full dashboard instead of
fallback HTML. - FU-P9-T2-1: updated uvx Web UI examples/configs to use mcpbridge-wrapper[webui] to avoid missing
dependency errors.
v0.3.0
Changelog
All notable changes to the mcpbridge-wrapper project will be documented in this file.
The format is based on Keep a Changelog,
and this project adheres to Semantic Versioning.
0.3.0 - 2026-02-13
Added
- Optional Web UI dashboard for real-time wrapper monitoring (
--web-ui) - Runtime metrics panel with request counts, latency, and error visibility
- Audit logging and activity inspection surfaces for wrapper operations
Changed
- Documentation and setup guidance aligned for Web UI-enabled workflows
- Release metadata bumped to
0.3.0for PyPI and MCP Registry publication
0.2.0 - 2026-02-08
Added
- MCP Registry publishing support with automated CI/CD workflow
server.jsonmanifest for MCP Registry compatibility- GitHub Actions workflow for publishing to PyPI and MCP Registry
Changed
- Version bump for initial PyPI and MCP Registry release
0.1.0 - 2026-02-08
Added
- Phase 1: Foundation - Project structure, Python packaging, development tooling
- Phase 2: Core Bridge - Subprocess wrapper around
xcrun mcpbridgewith bidirectional I/O - Phase 3: Response Transformation - JSON parsing, MCP compliance detection, structuredContent injection
- Phase 4: Edge Cases - Empty content, non-text content, already compliant responses, error handling
- Phase 5: Testing - Comprehensive unit tests (98%+ coverage), integration tests, performance benchmarks
- Phase 6: Packaging - Installation script, configuration templates for Cursor/Claude/Codex
- Phase 7: Documentation - Installation guide, configuration guides, troubleshooting, API reference
Features
- ✅ MCP protocol compatibility fix for Cursor
- ✅ Line-buffered I/O for minimal latency (<0.01ms overhead)
- ✅ Memory-efficient processing (<10MB footprint)
- ✅ Graceful error handling and process lifecycle management
- ✅ Support for all 20 Xcode MCP tools
- ✅ Configuration examples for Cursor, Claude Code, and Codex CLI
0.2.0
Release Notes - v0.2.0
Release Date: 2026-02-08
MCP Registry & PyPI Publishing
This release focuses on making the package available through the MCP Registry and PyPI with automated CI/CD workflows:
- https://registry.modelcontextprotocol.io/?q=xcode-mcpbridge-wrapper
- https://pypi.org/project/mcpbridge-wrapper/
Added
- MIT License - Added open-source licensing for distribution
- MCP Distribution Support - Initial setup for MCP Registry publishing
- PyPI Classifier Fix - Changed from invalid 'Tools' to valid 'Build Tools' classifier
- CI Workflow Fix - Removed mcp-publisher validate step (command not available in CI)
- GitHub Authentication Fix - Fixed server name casing to "SoundBlaster" (capital S) for GitHub auth
- Documentation Updates - Updated docs for MCP Registry publication
- Package Discoverability Improvements:
- Improved title: "Xcode: MCP Bridge Wrapper for Cursor"
- Renamed server:
xcode-mcpbridge-wrapperfor better discoverability
Documentation & Website
- Apple DocC Documentation Support (P8-T1):
- Added DocC documentation publishing workflow
- Created documentation catalog for
soundblaster.github.ioGitHub Pages - Added
swift-docc-pluginfor documentation generation - Fixed DocC hosting base path to match repository name
- DocC Canonical Structure (P8-T2):
- Restructured DocC to canonical Swift Package format
- Renamed SPM and DocC from
mcpbridge-wrappertoXcodeMCPWrapper - Fixed script and config references after SPM/DocC rename
- Deployment Path Change (P8-T3):
- Changed deployment path from
mcpbridge-wrappertoxcodemcpwrapper - Updated all references in scripts and configurations
CI/CD & Automation
- GitHub CI Workflow (P6-T10):
- Added GitHub Actions workflow for automated testing
- Integrated PyPI publishing via OIDC
- Added linting and formatting checks (ruff)
- Added dev dependencies to
pyproject.toml - Fixed Python 3.11/3.12 test failures
- Added
CONTRIBUTING.mdwith PR-only workflow rule - Added DocC documentation sync check
Files Added/Updated
server.json- MCP server manifest for registry compatibility.github/workflows/publish-mcp.yml- Automated publishing workflow.github/workflows/ci.yml- Continuous integration workflow.github/workflows/docs.yml- Documentation publishing workflowCONTRIBUTING.md- Contribution guidelinesPUBLISHING.md- Publishing documentationLICENSE- MIT LicensePackage.swift- Swift Package Manager manifest for DocC documentation buildSources/XcodeMCPWrapper/Documentation.docc/- DocC documentation catalog
Version History
Version Changes
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
0.1.0 Initial release with core functionality
0.1.1 MCP Distribution setup
0.1.2 PyPI classifier fix
0.1.3 CI workflow fix
0.1.4 Version bump for GitHub auth fix
0.1.5 Documentation updates for MCP Registry
0.1.6 Title improvement for discoverability
0.1.7 Server rename for better discoverability
0.2.0 DocC documentation, CI/CD, deployment path changes0.1.0
XcodeMCPWrapper - mcpbridge-wrapper - v0.1.0
MCP protocol compatibility fix for Xcode's xcrun mcpbridge.
What it does
Xcode 26.3+ includes an MCP bridge that exposes Xcode's internal tools to AI agents. However, it has a protocol compatibility issue: it returns tool responses in the content field but omits the required structuredContent field when a tool declares an outputSchema.
This wrapper intercepts responses from xcrun mcpbridge and copies the data from content into structuredContent, making Xcode's MCP tools fully compatible with Cursor, Claude Code, and Codex CLI.
What's included
- ✅ MCP protocol compatibility fix (adds
structuredContentto responses) - ✅ Subprocess wrapper with bidirectional I/O
- ✅ Graceful error handling and process lifecycle management
- ✅ Support for all 20 Xcode MCP tools (BuildProject, RunTests, XcodeRead, XcodeWrite, etc.)
- ✅ Configuration templates for Cursor, Claude Code, and Codex CLI
- ✅ 98%+ test coverage
Quick start
# Install
./scripts/install.sh
# Configure for Cursor (edit ~/.cursor/mcp.json)
{
"mcpServers": {
"xcode-tools": {
"command": "/Users/YOUR_USERNAME/bin/mcpbridge-wrapper"
}
}
}Requirements
- Xcode 26.3+
- Python 3.7+
- Xcode Tools MCP Server enabled in Xcode Settings → Intelligence