Skip to content

Commit 256f845

Browse files
saqadriandrew-lastmile
authored andcommitted
Fix deploy to cloud page
1 parent c2c47be commit 256f845

File tree

3 files changed

+9
-69
lines changed

3 files changed

+9
-69
lines changed

docs/get-started/deploy-to-cloud.mdx

Lines changed: 5 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,13 @@ Your cloud deployment is a standard MCP server. Use any MCP client:
7878
<Tabs>
7979
<Tab title="Claude Desktop">
8080
```bash
81-
uvx mcp-agent cloud configure --id https://<app_id>.deployments.mcp-agent.com
81+
uvx mcp-agent install https://<app_id>.deployments.mcp-agent.com \
82+
--client claude_desktop \
83+
--name research-buddy \
84+
--dry-run
8285
```
8386

84-
This command writes a ready-to-paste entry for `~/.claude-desktop/config.json` including the SSE URL and headers.
87+
Replace `claude_desktop` with `vscode`, `cursor`, `chatgpt` to install in those clients instead.
8588
</Tab>
8689

8790
<Tab title="Python">
@@ -168,27 +171,6 @@ class WebSummarizerWorkflow(Workflow[str]):
168171
return WorkflowResult(value=summary)
169172
```
170173

171-
```yaml mcp_agent.config.yaml
172-
execution_engine: temporal
173-
logger:
174-
transports: [console]
175-
level: info
176-
177-
temporal:
178-
host: temporal.mcp-agent.cloud
179-
namespace: default
180-
task_queue: mcp-agent
181-
182-
mcp:
183-
servers:
184-
fetch:
185-
command: "uvx"
186-
args: ["mcp-server-fetch"]
187-
188-
openai:
189-
default_model: gpt-4o
190-
```
191-
192174
Deploy with:
193175

194176
```bash

docs/get-started/install.mdx

Lines changed: 3 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ icon: arrow-down-to-line
1212
mcp-agent targets Python 3.10 or newer.
1313
</Card>
1414
<Card title="Node.js (optional)" icon="node-js">
15-
Some MCP servers (e.g. filesystem) are distributed via npm and require Node.js.
15+
Some MCP servers (e.g. filesystem) are distributed via npx and require Node.js.
1616
</Card>
1717
</CardGroup>
1818

19-
## Install the CLI with `uvx`
19+
## Run the CLI with `uvx`
2020

21-
Run `mcp-agent` commands without a global install by using [`uvx`](https://docs.astral.sh/uv/reference/cli/#uvx):
21+
You can run `mcp-agent` commands without a global install by using [`uvx`](https://docs.astral.sh/uv/reference/cli/#uvx):
2222

2323
```bash
2424
uvx mcp-agent --version
@@ -99,48 +99,6 @@ mcp-agent includes optional extras for different LLM providers. Install the ones
9999
</Accordion>
100100
</AccordionGroup>
101101

102-
## Install MCP servers (optional)
103-
104-
mcp-agent works with any MCP server. Install the ones you need:
105-
106-
<CardGroup cols={2}>
107-
<Card
108-
title="Fetch Server"
109-
icon="globe"
110-
href="https://github.com/modelcontextprotocol/servers/tree/main/src/fetch"
111-
>
112-
Web content fetching capabilities
113-
</Card>
114-
115-
<Card
116-
title="Filesystem Server"
117-
icon="folder"
118-
href="https://github.com/modelcontextprotocol/servers/tree/main/src/filesystem"
119-
>
120-
Local file system access
121-
</Card>
122-
123-
<Card
124-
title="SQLite Server"
125-
icon="database"
126-
href="https://github.com/modelcontextprotocol/servers/tree/main/src/sqlite"
127-
>
128-
SQLite database operations
129-
</Card>
130-
131-
<Card
132-
title="Git Server"
133-
icon="code-branch"
134-
href="https://github.com/modelcontextprotocol/servers/tree/main/src/git"
135-
>
136-
Git repository operations
137-
</Card>
138-
</CardGroup>
139-
140-
<Info>
141-
For more MCP servers, check out the [Awesome MCP Servers](https://github.com/punkpeye/awesome-mcp-servers) repository.
142-
</Info>
143-
144102
## Verify your setup
145103

146104
<Steps>

docs/get-started/welcome.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ icon: hand-wave
1212
className="rounded-2xl block"
1313
/>
1414

15-
**mcp-agent** is your pattern library for [Model Context Protocol](https://modelcontextprotocol.io/introduction) agents. It pairs Anthropic's [Building Effective Agents](https://www.anthropic.com/research/building-effective-agents) patterns with a batteries-included runtime so you can focus on agent behavior—not wiring.
15+
**mcp-agent** is your pattern library for building [Model Context Protocol](https://modelcontextprotocol.io/introduction) agents. It pairs Anthropic's [Building Effective Agents](https://www.anthropic.com/research/building-effective-agents) patterns with a batteries-included runtime so you can focus on agent behavior—not wiring.
1616

1717
## Why teams pick mcp-agent
1818

0 commit comments

Comments
 (0)