Skip to content

Commit c651d40

Browse files
committed
fix: #128 fix package in the generated mcp run config
During `mcp install` we are generating a config that relies on `mcp run`. However `mcp` is only available as a CLI command if we use the `cli` feature. We need to specify that we want to install mcp with the cli feature. Fixes #128
1 parent 2efa525 commit c651d40

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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)