Skip to content

Commit c02a295

Browse files
authored
Merge pull request #135 from modelcontextprotocol/davidsp/issue-128
fix: Package configuration and documentation improvements
2 parents 2efa525 + 0907378 commit c02a295

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.DS_Store
2+
13
# Byte-compiled / optimized / DLL files
24
__pycache__/
35
*.py[cod]

src/mcp/cli/claude.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
logger = get_logger(__name__)
1010

11+
MCP_PACKAGE = "mcp[cli]"
12+
1113

1214
def get_claude_config_path() -> Path | None:
1315
"""Get the Claude config directory based on platform."""
@@ -87,7 +89,7 @@ def update_claude_config(
8789
args = ["run"]
8890

8991
# Collect all packages in a set to deduplicate
90-
packages = {"mcp"}
92+
packages = {MCP_PACKAGE}
9193
if with_packages:
9294
packages.update(pkg for pkg in with_packages if pkg)
9395

0 commit comments

Comments
 (0)