Skip to content

Commit fbd004f

Browse files
committed
refactor: remove unnecessary comments in ClaudeCodeManager
1 parent 29af95b commit fbd004f

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/mcpm/clients/managers/claude_code.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)