@@ -67,7 +67,7 @@ def _build_uv_command(
6767 with_editable : Path | None = None ,
6868 with_packages : list [str ] | None = None ,
6969) -> list [str ]:
70- """Build the uv run command that runs a MCP server through mcp run."""
70+ """Build the uv run command that runs an MCP server through mcp run."""
7171 cmd = ["uv" ]
7272
7373 cmd .extend (["run" , "--with" , "mcp" ])
@@ -117,7 +117,7 @@ def _parse_file_path(file_spec: str) -> tuple[Path, str | None]:
117117
118118
119119def _import_server (file : Path , server_object : str | None = None ):
120- """Import a MCP server from a file.
120+ """Import an MCP server from a file.
121121
122122 Args:
123123 file: Path to the file
@@ -244,7 +244,7 @@ def dev(
244244 ),
245245 ] = [],
246246) -> None :
247- """Run a MCP server with the MCP Inspector."""
247+ """Run an MCP server with the MCP Inspector."""
248248 file , server_object = _parse_file_path (file_spec )
249249
250250 logger .debug (
@@ -317,7 +317,7 @@ def run(
317317 ),
318318 ] = None ,
319319) -> None :
320- """Run a MCP server.
320+ """Run an MCP server.
321321
322322 The server can be specified in two ways:\n
323323 1. Module approach: server.py - runs the module directly, expecting a server.run() call.\n
@@ -412,7 +412,7 @@ def install(
412412 ),
413413 ] = None ,
414414) -> None :
415- """Install a MCP server in the Claude desktop app.
415+ """Install an MCP server in the Claude desktop app.
416416
417417 Environment variables are preserved once added and only updated if new values
418418 are explicitly provided.
0 commit comments