Skip to content

Releases: SoundBlaster/XcodeMCPWrapper

Release v0.3.3

13 Feb 20:24
eb4c9e9

Choose a tag to compare

  • Fixed the BUG-T0 Uptime widget on Web UI always shows 1h 0m 0s #32

Version 0.3.2

13 Feb 09:17
f9ed820

Choose a tag to compare

Version 0.3.1

13 Feb 07:51
0781500

Choose a tag to compare

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

12 Feb 21:12

Choose a tag to compare

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.0 for PyPI and MCP Registry publication

0.2.0 - 2026-02-08

Added

  • MCP Registry publishing support with automated CI/CD workflow
  • server.json manifest 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 mcpbridge with 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

08 Feb 19:46

Choose a tag to compare

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:

Added

  1. MIT License - Added open-source licensing for distribution
  2. MCP Distribution Support - Initial setup for MCP Registry publishing
  3. PyPI Classifier Fix - Changed from invalid 'Tools' to valid 'Build Tools' classifier
  4. CI Workflow Fix - Removed mcp-publisher validate step (command not available in CI)
  5. GitHub Authentication Fix - Fixed server name casing to "SoundBlaster" (capital S) for GitHub auth
  6. Documentation Updates - Updated docs for MCP Registry publication
  7. Package Discoverability Improvements:
  • Improved title: "Xcode: MCP Bridge Wrapper for Cursor"
  • Renamed server: xcode-mcpbridge-wrapper for better discoverability

Documentation & Website

  1. Apple DocC Documentation Support (P8-T1):
  • Added DocC documentation publishing workflow
  • Created documentation catalog for soundblaster.github.io GitHub Pages
  • Added swift-docc-plugin for documentation generation
  • Fixed DocC hosting base path to match repository name
  1. DocC Canonical Structure (P8-T2):
  • Restructured DocC to canonical Swift Package format
  • Renamed SPM and DocC from mcpbridge-wrapper to XcodeMCPWrapper
  • Fixed script and config references after SPM/DocC rename
  1. Deployment Path Change (P8-T3):
  • Changed deployment path from mcpbridge-wrapper to xcodemcpwrapper
  • Updated all references in scripts and configurations

CI/CD & Automation

  1. 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.md with 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 workflow
  • CONTRIBUTING.md - Contribution guidelines
  • PUBLISHING.md - Publishing documentation
  • LICENSE - MIT License
  • Package.swift - Swift Package Manager manifest for DocC documentation build
  • Sources/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 changes

0.1.0

08 Feb 09:49

Choose a tag to compare

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 structuredContent to 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

Related Links