Skip to content

Commit a74c717

Browse files
committed
Fix typo
Replaced incorrect "a MCP" with "an MCP" across multiple documentation files to match the correct usage based on pronunciation.
1 parent 6f2cd0c commit a74c717

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/mcp/cli/cli.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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

119119
def _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

Comments
 (0)