We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd8763e commit e51dfa9Copy full SHA for e51dfa9
pyproject.toml
@@ -42,7 +42,7 @@ dependencies = [
42
rich = ["rich>=13.9.4"]
43
44
[project.scripts]
45
-mcp-python-sdk = "mcp-python-sdk.cli:app"
+mcp = "mcp-python-sdk.cli:app"
46
47
[tool.uv]
48
default-groups = ["dev", "docs"]
src/mcp/cli/cli.py
@@ -70,7 +70,7 @@ def _build_uv_command(
70
"""Build the uv run command that runs an MCP server through mcp run."""
71
cmd = ["uv"]
72
73
- cmd.extend(["run", "--with", "mcp-python-sdk"])
+ cmd.extend(["run", "--with", "mcp"])
74
75
if with_editable:
76
cmd.extend(["--with-editable", str(with_editable)])
0 commit comments