fix: add MSIX package app path detection for Claude#126
Merged
Jeomon merged 1 commit intoCursorTouch:mainfrom Mar 25, 2026
Merged
fix: add MSIX package app path detection for Claude#126Jeomon merged 1 commit intoCursorTouch:mainfrom
Jeomon merged 1 commit intoCursorTouch:mainfrom
Conversation
When Claude Desktop is installed as a Windows Package App (MSIX), its data directory moves from %APPDATA%\Claude to a per-package location under %LOCALAPPDATA%\Packages\Claude_*\LocalCache\Roaming\Claude. Add a paths module that probes both locations (MSIX first, then standard) so the extension directory can be resolved dynamically regardless of installation type. Closes CursorTouch#102
Contributor
Author
|
Hi, I just realized the commit on #126 went in with my work email instead of my personal one (thebook90yw@gmail.com). Would you be able to amend the author email and force push? If that's too much trouble, no worries. Sorry about the mix up. |
Jeomon
added a commit
that referenced
this pull request
Mar 25, 2026
fix: add MSIX package app path detection for Claude
Member
|
Done I made the changes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
pathsmodule (src/windows_mcp/paths.py) that resolves the Claude Desktop data directory dynamically%LOCALAPPDATA%\Packages\Claude_*\LocalCache\Roaming\Claude) first, then falls back to the standard%APPDATA%\Claudeget_claude_data_dir(),get_claude_config_path(), andis_msix_install()helpersTest plan
is_msix_install()flagCloses #102