Skip to content

Commit 95f1a10

Browse files
[flyctl-bot] Update docs from flyctl (#2001)
Co-authored-by: Fly.io CI <[email protected]>
1 parent d2cc821 commit 95f1a10

File tree

5 files changed

+117
-0
lines changed

5 files changed

+117
-0
lines changed

flyctl/cmd/fly.md

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ fly [flags]
2929
* [logs](/docs/flyctl/logs/) - View app logs
3030
* [machine](/docs/flyctl/machine/) - Manage Fly Machines.
3131
* [managed-postgres](/docs/flyctl/managed-postgres/) - Manage Managed Postgres clusters.
32+
* [mcp](/docs/flyctl/mcp/) - flyctl Model Content Protocol.
3233
* [mysql](/docs/flyctl/mysql/) - Provision and manage MySQL database clusters
3334
* [orgs](/docs/flyctl/orgs/) - Commands for managing Fly organizations
3435
* [ping](/docs/flyctl/ping/) - Test connectivity with ICMP ping messages

flyctl/cmd/fly_mcp.md

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
flyctl Model Content Protocol.
2+
3+
4+
## Usage
5+
~~~
6+
fly mcp [command] [flags]
7+
~~~
8+
9+
## Available Commands
10+
* [proxy](/docs/flyctl/mcp-proxy/) - [experimental] Start an MCP proxy client
11+
* [server](/docs/flyctl/mcp-server/) - [experimental] Start a flyctl MCP server
12+
* [wrap](/docs/flyctl/mcp-wrap/) - [experimental] Wrap an MCP stdio program
13+
14+
## Options
15+
16+
~~~
17+
-h, --help help for mcp
18+
~~~
19+
20+
## Global Options
21+
22+
~~~
23+
-t, --access-token string Fly API Access Token
24+
--debug Print additional logs and traces
25+
--verbose Verbose output
26+
~~~
27+
28+
## See Also
29+
30+
* [fly](/docs/flyctl/help/) - The Fly.io command line interface
31+

flyctl/cmd/fly_mcp_proxy.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
[experimental] Start an MCP proxy client
2+
3+
4+
## Usage
5+
~~~
6+
fly mcp proxy [flags]
7+
~~~
8+
9+
## Options
10+
11+
~~~
12+
-h, --help help for proxy
13+
-p, --password string [optional] Password to authenticate with
14+
--url string URL of the MCP wrapper server
15+
-u, --user string [optional] User to authenticate with
16+
~~~
17+
18+
## Global Options
19+
20+
~~~
21+
-t, --access-token string Fly API Access Token
22+
--debug Print additional logs and traces
23+
--verbose Verbose output
24+
~~~
25+
26+
## See Also
27+
28+
* [fly mcp](/docs/flyctl/mcp/) - flyctl Model Content Protocol.
29+

flyctl/cmd/fly_mcp_server.md

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
[experimental] Start a flyctl MCP server
2+
3+
4+
## Usage
5+
~~~
6+
fly mcp server [flags]
7+
~~~
8+
9+
## Options
10+
11+
~~~
12+
-h, --help help for server
13+
~~~
14+
15+
## Global Options
16+
17+
~~~
18+
-t, --access-token string Fly API Access Token
19+
--debug Print additional logs and traces
20+
--verbose Verbose output
21+
~~~
22+
23+
## See Also
24+
25+
* [fly mcp](/docs/flyctl/mcp/) - flyctl Model Content Protocol.
26+

flyctl/cmd/fly_mcp_wrap.md

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
[experimental] Wrap an MCP stdio program. Options passed after double dashes ("--") will be passed to the MCP program.
2+
3+
4+
## Usage
5+
~~~
6+
fly mcp wrap [flags]
7+
~~~
8+
9+
## Options
10+
11+
~~~
12+
-h, --help help for wrap
13+
-m, --mcp string Path to the MCP program
14+
--password string [optional] Password to authenticate with
15+
-p, --port int Port to listen on (default 8080)
16+
--user string [optional] User to authenticate with
17+
~~~
18+
19+
## Global Options
20+
21+
~~~
22+
-t, --access-token string Fly API Access Token
23+
--debug Print additional logs and traces
24+
--verbose Verbose output
25+
~~~
26+
27+
## See Also
28+
29+
* [fly mcp](/docs/flyctl/mcp/) - flyctl Model Content Protocol.
30+

0 commit comments

Comments
 (0)