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
description: "Deploy your agent to mcp-agent cloud in minutes"
4
+
description: "Publish your agent to mcp-agent Cloud with the CLI."
5
5
icon: cloud
6
6
---
7
7
8
8
<Info>
9
-
mcp-agent cloud is currently in open beta. For feedback, issues and feature requests, visit our [github issues](https://github.com/lastmile-ai/mcp-agent/issues) or join [our Discord](https://lmai.link/discord/mcp-agent).
9
+
mcp-agent Cloud is in open beta. 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
-
## Quick Deploy
12
+
## TL;DR – three commands
13
13
14
-
Deploy your agent to the cloud with a single command:
14
+
```bash
15
+
uvx mcp-agent login
16
+
uvx mcp-agent deploy my-agent
17
+
uvx mcp-agent cloud servers list
18
+
uvx mcp-agent cloud servers describe my-agent
19
+
```
15
20
16
-
<Steps>
17
-
<Steptitle="Install mcp-agent CLI">
18
-
```bash
19
-
# Using uv (recommended)
20
-
uv tool install mcp-agent
21
+
1.`login` stores your API token locally.
22
+
2.`deploy` packages the current directory and uploads it.
23
+
3.`cloud servers list` shows every deployment you have access to.
24
+
4.`cloud servers describe` confirms the deployment URL and secret policy.
21
25
22
-
# Or using pip
23
-
pip install mcp-agent
24
-
```
25
-
</Step>
26
+
## 1. Authenticate
26
27
27
-
<Steptitle="Log in to mcp-agent cloud">
28
-
```bash
29
-
mcp-agent login
30
-
```
28
+
```bash
29
+
uvx mcp-agent login
30
+
```
31
31
32
-
This will direct you to the API keys page for obtaining credentials.
33
-
</Step>
32
+
The CLI opens the Cloud dashboard so you can generate an API token. Credentials are stored under `~/.mcp-agent/`.
34
33
35
-
<Steptitle="Deploy your agent">
36
-
```bash
37
-
mcp-agent deploy my-agent
38
-
```
34
+
## 2. Deploy
39
35
40
-
Your agent will be deployed and accessible as an MCP server at:
From the directory containing your `mcp_agent.config.yaml` (or pass `--config-dir`):
46
37
47
-
## What Gets Deployed?
38
+
```bash
39
+
uvx mcp-agent deploy my-agent
40
+
```
48
41
49
-
When you deploy an agent, mcp-agent cloud:
42
+
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.
50
43
51
-
<CardGroupcols={2}>
52
-
<Cardtitle="Hosts Your Agent"icon="server">
53
-
Your agent runs on managed infrastructure with automatic scaling
54
-
</Card>
55
-
<Cardtitle="Exposes MCP Server"icon="plug">
56
-
Your agent becomes an MCP server that any client can connect to
57
-
</Card>
58
-
<Cardtitle="Manages Secrets"icon="key">
59
-
API keys and secrets are securely stored and injected
0 commit comments