File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
src/mcpm/clients/managers Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -31,9 +31,6 @@ def __init__(self, config_path=None):
3131 if config_path :
3232 self .config_path = config_path
3333 else :
34- # Claude Code uses .mcp.json in the current working directory for project scope
35- # For user scope, it uses the home directory
36- # We'll default to user scope configuration
3734 self .config_path = os .path .expanduser ("~/.claude.json" )
3835
3936 def _get_empty_config (self ) -> Dict [str , Any ]:
@@ -45,7 +42,6 @@ def is_client_installed(self) -> bool:
4542 Returns:
4643 bool: True if claude command is available, False otherwise
4744 """
48- # Check if 'claude' command is available in PATH
4945 claude_executable = "claude.exe" if self ._system == "Windows" else "claude"
5046 return shutil .which (claude_executable ) is not None
5147
You can’t perform that action at this time.
0 commit comments