We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a874a3 commit d73cf9bCopy full SHA for d73cf9b
src/mcp/cli/claude.py
@@ -19,7 +19,7 @@ def get_claude_config_path() -> Path | None:
19
elif sys.platform == "darwin":
20
path = Path(Path.home(), "Library", "Application Support", "Claude")
21
elif sys.platform.startswith("linux"):
22
- path = Path(os.environ.get("XDG_CONFIG_HOME", Path.home() / ".config"))
+ path = Path(os.environ.get("XDG_CONFIG_HOME", Path.home() / ".config"), "Claude")
23
else:
24
return None
25
0 commit comments