We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2efa525 + 6a80654 commit 0c00fdcCopy full SHA for 0c00fdc
3 files changed
.github/workflows/main-checks.yml
@@ -4,7 +4,9 @@ on:
4
push:
5
branches:
6
- main
7
- - 'v*.*.*'
+ - "v*.*.*"
8
+ tags:
9
10
11
jobs:
12
checks:
.gitignore
@@ -1,3 +1,5 @@
1
+.DS_Store
2
+
3
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
src/mcp/cli/claude.py
@@ -8,6 +8,8 @@
logger = get_logger(__name__)
+MCP_PACKAGE = "mcp[cli]"
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