Skip to content

Commit 8e6fb90

Browse files
minor updates to sequencing of docs (#592)
1 parent f330b27 commit 8e6fb90

File tree

6 files changed

+22
-567
lines changed

6 files changed

+22
-567
lines changed

docs/docs.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
"group": "Get Started",
3434
"pages": [
3535
"get-started/welcome",
36-
"get-started/install",
3736
"get-started/quickstart",
37+
"get-started/install",
3838
"get-started/deploy-to-cloud"
3939
]
4040
},

docs/get-started/install.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Installation
3-
sidebarTitle: "Install"
3+
sidebarTitle: "Installation"
44
description: "Set up mcp-agent, the CLI, and optional provider extras."
55
icon: arrow-down-to-line
66
---

docs/get-started/quickstart.mdx

Lines changed: 18 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,24 @@ Let's get you set up with a hello world mcp-agent!
1111

1212
<Tabs>
1313
<Tab title="Use CLI (Recommended)">
14-
```bash
15-
mkdir mcp-basic-agent
16-
cd mcp-basic-agent
17-
uvx mcp-agent init
18-
uv init
19-
uv add mcp-agent
20-
uv sync
21-
```
22-
23-
(Prefer pip? `pip install mcp-agent` works too.)
14+
<Steps>
15+
<Step title="Create a folder">
16+
```bash
17+
mkdir mcp-basic-agent
18+
cd mcp-basic-agent
19+
```
20+
</Step>
21+
22+
<Step title="Initialize your mcp-agent">
23+
```bash
24+
uvx mcp-agent init
25+
uv init
26+
uv add mcp-agent
27+
uv sync
28+
```
29+
(Prefer pip? `python -m venv .venv && pip install mcp-agent` works too.)
30+
</Step>
31+
</Steps>
2432
</Tab>
2533
<Tab title="Do it manually">
2634
<Steps>

docs/get-started/welcome.mdx

Lines changed: 2 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ icon: hand-wave
1818

1919
<CardGroup cols={2}>
2020
<Card title="Composable patterns" icon="puzzle-piece">
21-
Parallel, router, planner, evaluator—every pattern from Anthropic's guide (plus OpenAI Swarm-style handoffs) ships as a first-class workflow.
21+
Parallel, router, planner, evaluator—every pattern from Anthropic's guide ships as a first-class workflow.
2222
</Card>
2323
<Card title="MCP-native" icon="plug">
2424
Works with any MCP server. Drop in the filesystem, fetch, Slack, Jira, or your own FastMCP servers and start calling tools immediately.
@@ -56,7 +56,7 @@ if __name__ == "__main__":
5656
asyncio.run(main())
5757
```
5858

59-
## Start building
59+
## Next steps
6060

6161
<CardGroup cols={2}>
6262
<Card
@@ -88,36 +88,3 @@ if __name__ == "__main__":
8888
Learn how to combine planner, router, evaluator, and more.
8989
</Card>
9090
</CardGroup>
91-
92-
Want to go deeper? Browse [Core Components](/mcp-agent-sdk/overview) for API details or jump to [MCP Servers](/mcp-agent-sdk/mcp/overview) to see how FastMCP integrates with agents.
93-
94-
<CardGroup cols={2}>
95-
<Card
96-
title="Installation"
97-
icon="arrow-down-to-line"
98-
href="/get-started/install"
99-
>
100-
Set up your development environment
101-
</Card>
102-
<Card
103-
title="Quickstart"
104-
icon="rocket-launch"
105-
href="/get-started/quickstart"
106-
>
107-
Build your first agent in 5 minutes
108-
</Card>
109-
<Card
110-
title="Core Concepts"
111-
icon="graduation-cap"
112-
href="/mcp-agent-sdk/overview"
113-
>
114-
Understand agents, workflows, and MCP
115-
</Card>
116-
<Card
117-
title="Examples"
118-
icon="code"
119-
href="https://github.com/lastmile-ai/mcp-agent/tree/main/examples"
120-
>
121-
Explore 30+ working examples
122-
</Card>
123-
</CardGroup>

docs/installation.mdx

Lines changed: 0 additions & 256 deletions
This file was deleted.

0 commit comments

Comments
 (0)