Skip to content

Commit d73cf9b

Browse files
committed
update Linux config path to include 'Claude' directory
1 parent 6a874a3 commit d73cf9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mcp/cli/claude.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def get_claude_config_path() -> Path | None:
1919
elif sys.platform == "darwin":
2020
path = Path(Path.home(), "Library", "Application Support", "Claude")
2121
elif sys.platform.startswith("linux"):
22-
path = Path(os.environ.get("XDG_CONFIG_HOME", Path.home() / ".config"))
22+
path = Path(os.environ.get("XDG_CONFIG_HOME", Path.home() / ".config"), "Claude")
2323
else:
2424
return None
2525

0 commit comments

Comments
 (0)