Skip to content

Releases: CursorTouch/MacOS-MCP

v0.3.8

Choose a tag to compare

@github-actions github-actions released this 20 Jun 01:33

What's Changed

  • fix: resolve three issues preventing v0.3.7 from running as a Claude Desktop extension by @Jeomon in #13
  • feat: update entry point to serve, switch shell execution to bash, an… by @Jeomon in #14
  • fix: drain autorelease pools on secondary AX threads to stop idle memory leak by @brendancsmith in #17
  • fix: AXWindows role-misclassification recursion on macOS 26 Tahoe (Snapshot RecursionError) by @Austin519 in #18
  • perf: throttle EventObserver app re-scan to cut idle CPU by @kinjung in #20

New Contributors

Full Changelog: v0.3.7...v0.3.8

v0.3.7

Choose a tag to compare

@Jeomon Jeomon released this 01 Jun 00:49

Bug Fixes

Fix SyntaxError on import — _SCRAPE_MAX_CHARS misplaced above decorator (#8)

macos-mcp 0.3.6 was completely broken on import due to _SCRAPE_MAX_CHARS = 20_000 being placed between the @mcp.tool(...) decorator and def scrape_tool(...). Python raised a SyntaxError before serving a single tool call. The constant has been moved above the decorator.

Fix AXObserver memory leak in EventObserver (~10–17 MB/min) (#7)

Two cooperating bugs caused steady linear physical footprint growth during long-running sessions, eventually triggering OOM on extended use:

  • AppObserver.start() leaked partial CF state on failure — early-exit paths after AXObserverCreate succeeded left AXObserver and run loop source references alive and never released by the AX framework.
  • _update_observers retried unobservable PIDs every 0.1 s — failed PIDs were never marked as seen, so system/permission-denied apps triggered a new AXObserverCreate call (and leak) on every event loop tick (~10 objects/second).

Both sites are now fixed: start() cleans up partial state at each failure path, and _update_observers unconditionally marks PIDs as seen regardless of success or failure.

v0.3.4

Choose a tag to compare

@github-actions github-actions released this 12 May 16:15

Full Changelog: v0.3.3...v0.3.4

v0.3.3

Choose a tag to compare

@Jeomon Jeomon released this 12 May 14:56

macOS-MCP v0.3.3

✨ Features

  • Notification Tool — Send macOS notification banners with titles, subtitles, and custom sounds
  • App Tool 'move' Mode — New mode for precise window repositioning
  • Scrollable Elements Detection — Improved detection of scrollable UI elements

🐛 Fixes

  • Fixed window resize and move operations with proper AXValue wrapping
  • Improved scroll label retrieval performance

🔄 Improvements

  • Enhanced Accessibility API module with better pattern matching
  • Optimized control interactions and event handling

GitHub | Issues

v0.3.1

Choose a tag to compare

@github-actions github-actions released this 12 May 03:55

Full Changelog: v0.3.0...v0.3.1

v0.3.0

Choose a tag to compare

@github-actions github-actions released this 11 May 17:00

What's Changed

New Contributors

Full Changelog: v0.2.3...v0.3.0

v0.2.3

Choose a tag to compare

@github-actions github-actions released this 21 Apr 01:34

Full Changelog: v0.2.0...v0.2.3

v0.2.0

Choose a tag to compare

@Jeomon Jeomon released this 07 Apr 10:56

Full Changelog: v0.1.0...v0.2.0

v0.1.0

Choose a tag to compare

@Jeomon Jeomon released this 24 Mar 07:21

Features

  • Computer use capabilites for macos
  • Basic Keyboard and Mouse opertions
  • Accessibility based approach
  • App tool used to launch apps