@@ -10,7 +10,7 @@ FastMCP CLI tools using Cyclopts.
1010
1111## Functions
1212
13- ### ` with_argv ` <sup ><a href = " https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/cli/cli.py#L65 " target = " _blank" ><Icon icon = " github" style = " width: 14px; height: 14px;" /></a ></sup >
13+ ### ` with_argv ` <sup ><a href = " https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/cli/cli.py#L66 " target = " _blank" ><Icon icon = " github" style = " width: 14px; height: 14px;" /></a ></sup >
1414
1515``` python
1616with_argv(args: list[str ] | None )
@@ -27,7 +27,7 @@ Args are provided without the script name, so we preserve sys.argv[0]
2727and replace the rest.
2828
2929
30- ### ` version ` <sup ><a href = " https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/cli/cli.py#L88 " target = " _blank" ><Icon icon = " github" style = " width: 14px; height: 14px;" /></a ></sup >
30+ ### ` version ` <sup ><a href = " https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/cli/cli.py#L89 " target = " _blank" ><Icon icon = " github" style = " width: 14px; height: 14px;" /></a ></sup >
3131
3232``` python
3333version()
@@ -37,7 +37,7 @@ version()
3737Display version information and platform details.
3838
3939
40- ### ` dev ` <sup ><a href = " https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/cli/cli.py#L126 " target = " _blank" ><Icon icon = " github" style = " width: 14px; height: 14px;" /></a ></sup >
40+ ### ` dev ` <sup ><a href = " https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/cli/cli.py#L127 " target = " _blank" ><Icon icon = " github" style = " width: 14px; height: 14px;" /></a ></sup >
4141
4242``` python
4343dev(server_spec: str | None = None ) -> None
@@ -50,7 +50,7 @@ Run an MCP server with the MCP Inspector for development.
5050- ` server_spec ` : Python file to run, optionally with \: object suffix, or None to auto-detect fastmcp.json
5151
5252
53- ### ` run ` <sup ><a href = " https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/cli/cli.py#L286 " target = " _blank" ><Icon icon = " github" style = " width: 14px; height: 14px;" /></a ></sup >
53+ ### ` run ` <sup ><a href = " https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/cli/cli.py#L287 " target = " _blank" ><Icon icon = " github" style = " width: 14px; height: 14px;" /></a ></sup >
5454
5555``` python
5656run(server_spec: str | None = None , * server_args: str ) -> None
@@ -74,7 +74,7 @@ fastmcp run server.py -- --config config.json --debug
7474- ` server_spec ` : Python file, object specification (file\: obj), config file, URL, or None to auto-detect
7575
7676
77- ### ` inspect ` <sup ><a href = " https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/cli/cli.py#L520 " target = " _blank" ><Icon icon = " github" style = " width: 14px; height: 14px;" /></a ></sup >
77+ ### ` inspect ` <sup ><a href = " https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/cli/cli.py#L521 " target = " _blank" ><Icon icon = " github" style = " width: 14px; height: 14px;" /></a ></sup >
7878
7979``` python
8080inspect(server_spec: str | None = None ) -> None
@@ -105,7 +105,7 @@ fastmcp inspect # auto-detect fastmcp.json
105105- ` server_spec ` : Python file to inspect, optionally with \: object suffix, or fastmcp.json
106106
107107
108- ### ` prepare ` <sup ><a href = " https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/cli/cli.py#L765 " target = " _blank" ><Icon icon = " github" style = " width: 14px; height: 14px;" /></a ></sup >
108+ ### ` prepare ` <sup ><a href = " https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/cli/cli.py#L766 " target = " _blank" ><Icon icon = " github" style = " width: 14px; height: 14px;" /></a ></sup >
109109
110110``` python
111111prepare(config_path: Annotated[str | None , cyclopts.Parameter(help = ' Path to fastmcp.json configuration file' )] = None , output_dir: Annotated[str | None , cyclopts.Parameter(help = ' Directory to create the persistent environment in' )] = None , skip_source: Annotated[bool , cyclopts.Parameter(help = ' Skip source preparation (e.g., git clone)' )] = False ) -> None
0 commit comments