You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -974,7 +974,8 @@ You can use mcp-agent applications in a standalone fashion (i.e. they aren't par
974
974
975
975
### How do I deploy to Cloud?
976
976
977
-
Run `uvx mcp-agent deploy <app-name>` after logging in with `uvx mcp-agent login`. The CLI packages your project, provisions secrets, and exposes an MCP endpoint backed by a durable Temporal runtime. See the [Cloud quickstart](https://docs.mcp-agent.com/get-started/deploy-to-cloud) for step-by-step screenshots and CLI output.
977
+
Run `uvx mcp-agent deploy <app-name>` after logging in with `uvx mcp-agent login`. The CLI packages your project, provisions secrets, and exposes an MCP endpoint backed by a durable Temporal runtime. See the [Cloud quickstart](https://docs.mcp-agent.com/get-started/
978
+
cloud) for step-by-step screenshots and CLI output.
Copy file name to clipboardExpand all lines: docs/get-started/cloud.mdx
+66-48Lines changed: 66 additions & 48 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,40 +1,38 @@
1
1
---
2
-
title: Deploy to Cloud
3
-
sidebarTitle: "Deploy to Cloud"
4
-
description: "Publish your agent to the Cloud with the CLI."
2
+
title: "MCP-Cloud (mcp-c)"
3
+
sidebarTitle: "Cloud"
4
+
description: "Deploy and host your mcp-agents and apps on the cloud."
5
5
icon: cloud
6
6
---
7
7
8
8
<Info>
9
9
`mcp-c` is in open beta, and free to use. Share feedback via [GitHub issues](https://github.com/lastmile-ai/mcp-agent/issues) or [Discord](https://lmai.link/discord/mcp-agent).
10
10
</Info>
11
11
12
-
## What is mcp-c?
12
+
## What is MCP-Cloud?
13
13
14
-
Before diving into the workflow, here is the 30‑second summary. See the dedicated pages under [Deployment](/cloud/overview) for full detail:
14
+
MCP-Cloud (mcp-c) is a fully managed cloud platform for hosting mcp-agents, apps, and mcp servers.
15
15
16
-
-**One runtime for any MCP application** – deploy durable `mcp-agent` workflows, FastMCP servers, or ChatGPT App backends. Everything is exposed as an MCP server at `https://<app_id>.deployments.mcp-agent.com` ([Cloud overview](/cloud/mcp-agent-cloud/overview)).
-**One runtime for any MCP application** – deploy durable `mcp-agent` workflows, FastMCP servers, or ChatGPT App backends. Everything is exposed as an MCP server at `https://<unique_id>.deployments.mcp-agent.com` ([Cloud overview](/cloud/mcp-agent-cloud/overview)).
17
29
-**Temporal-backed execution** – long-running tools and workflows run on Temporal with retries, pause/resume, and human input support ([Long-running tools](/cloud/mcp-agent-cloud/long-running-tools)).
18
-
-**Managed secrets & authentication** – classify secrets during deploy, collect user secrets later, and choose bearer or unauthenticated access today (OAuth coming soon) ([Manage secrets](/cloud/mcp-agent-cloud/manage-secrets) and [Deployment auth](/cloud/authentication/deployment-auth)).
30
+
-**Managed secrets & authentication** – manage secrets for both you, as the developer, and your users. Allow users to specify their own keys, and choose bearer or unauthenticated access today (OAuth coming soon) ([Manage secrets](/cloud/mcp-agent-cloud/manage-secrets) and [Deployment auth](/cloud/authentication/deployment-auth)).
19
31
-**Observability built in** – stream logs, forward traces, and inspect workflow history directly from the CLI ([Observability](/cloud/observability)).
20
32
-**Easy client install** – use `mcp-agent install` or `mcp-agent cloud configure` to wire the deployed server into Claude Desktop, Cursor, VS Code, or ChatGPT Apps ([Use a deployed server](/cloud/mcp-agent-cloud/use-deployed-server)).
21
33
22
34
With that context, the steps below show exactly how to deploy.
23
35
24
-
## TL;DR – three commands
25
-
26
-
```bash
27
-
uvx mcp-agent login
28
-
uvx mcp-agent deploy my-agent
29
-
uvx mcp-agent cloud servers list
30
-
uvx mcp-agent cloud servers describe my-agent
31
-
```
32
-
33
-
1.`login` stores your API token locally.
34
-
2.`deploy` packages the current directory and uploads it.
35
-
3.`cloud servers list` shows every deployment you have access to.
36
-
4.`cloud servers describe` confirms the deployment URL and secret policy.
37
-
38
36
## 1. Authenticate
39
37
40
38
```bash
@@ -51,7 +49,7 @@ From the directory containing your `mcp_agent.config.yaml` (or pass `--config-di
51
49
uvx mcp-agent deploy my-agent
52
50
```
53
51
54
-
During deployment you'll classify secrets as **deployment** (stored securely) or **user** (provided later via `mcp-agent cloud configure`). Use `--dry-run` to validate without uploading or `--non-interactive` for CI.
52
+
During deployment you'll classify secrets as **deployment** (stored securely) or **user** (provided later via `mcp-agent cloud configure`).
55
53
56
54
<CodeGroup>
57
55
```bash basic
@@ -61,14 +59,14 @@ directory/
61
59
└── mcp_agent.secrets.yaml
62
60
```
63
61
```bash deploy
64
-
uvx mcp-agent deploy my-agent --dry-run
62
+
uvx mcp-agent deploy my-agent
65
63
```
66
64
</CodeGroup>
67
65
68
66
After a successful deploy you'll receive an endpoint like:
69
67
70
68
```
71
-
https://<app_id>.deployments.mcp-agent.com
69
+
https://<unique_id>.deployments.mcp-agent.com
72
70
```
73
71
74
72
## 3. Connect from clients
@@ -78,13 +76,12 @@ Your cloud deployment is a standard MCP server. Use any MCP client:
0 commit comments