Skip to content

Commit e65404a

Browse files
committed
fix: Install still runs the fastmcp command, which is now unecessary (/not installed). We can just run it with mcp.
1 parent 6194d06 commit e65404a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mcp/cli/claude.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def update_claude_config(
8787
args = ["run"]
8888

8989
# Collect all packages in a set to deduplicate
90-
packages = {"fastmcp"}
90+
packages = {"mcp"}
9191
if with_packages:
9292
packages.update(pkg for pkg in with_packages if pkg)
9393

@@ -107,7 +107,7 @@ def update_claude_config(
107107
file_spec = str(Path(file_spec).resolve())
108108

109109
# Add fastmcp run command
110-
args.extend(["fastmcp", "run", file_spec])
110+
args.extend(["mcp", "run", file_spec])
111111

112112
server_config = {
113113
"command": "uv",

0 commit comments

Comments
 (0)