File tree 5 files changed +117
-0
lines changed
5 files changed +117
-0
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ fly [flags]
29
29
* [ logs] ( /docs/flyctl/logs/ ) - View app logs
30
30
* [ machine] ( /docs/flyctl/machine/ ) - Manage Fly Machines.
31
31
* [ managed-postgres] ( /docs/flyctl/managed-postgres/ ) - Manage Managed Postgres clusters.
32
+ * [ mcp] ( /docs/flyctl/mcp/ ) - flyctl Model Content Protocol.
32
33
* [ mysql] ( /docs/flyctl/mysql/ ) - Provision and manage MySQL database clusters
33
34
* [ orgs] ( /docs/flyctl/orgs/ ) - Commands for managing Fly organizations
34
35
* [ ping] ( /docs/flyctl/ping/ ) - Test connectivity with ICMP ping messages
Original file line number Diff line number Diff line change
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
+
Original file line number Diff line number Diff line change
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
+
Original file line number Diff line number Diff line change
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
+
Original file line number Diff line number Diff line change
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
+
You can’t perform that action at this time.
0 commit comments