We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2efa525 + 0907378 commit c02a295Copy full SHA for c02a295
.gitignore
@@ -1,3 +1,5 @@
1
+.DS_Store
2
+
3
# Byte-compiled / optimized / DLL files
4
__pycache__/
5
*.py[cod]
src/mcp/cli/claude.py
@@ -8,6 +8,8 @@
8
9
logger = get_logger(__name__)
10
11
+MCP_PACKAGE = "mcp[cli]"
12
13
14
def get_claude_config_path() -> Path | None:
15
"""Get the Claude config directory based on platform."""
@@ -87,7 +89,7 @@ def update_claude_config(
87
89
args = ["run"]
88
90
91
# Collect all packages in a set to deduplicate
- packages = {"mcp"}
92
+ packages = {MCP_PACKAGE}
93
if with_packages:
94
packages.update(pkg for pkg in with_packages if pkg)
95
0 commit comments