Skip to content

Commit fcfbd79

Browse files
committed
minor updates to docs
1 parent cb09074 commit fcfbd79

File tree

2 files changed

+29
-26
lines changed

2 files changed

+29
-26
lines changed

docs/get-started/install.mdx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -109,16 +109,16 @@ mcp-agent includes optional extras for different LLM providers. Install the ones
109109
```
110110
</Step>
111111

112-
<Step title="Install dependencies">
112+
<Step title="Bootstrap your project">
113113
```bash
114-
uv init
115-
uv add mcp-agent
114+
uvx mcp-agent init
116115
```
117116
</Step>
118117

119-
<Step title="Smoke test">
118+
<Step title="Install dependencies">
120119
```bash
121-
uv run python -c "import mcp_agent; print('mcp-agent installed successfully!')"
120+
uv init
121+
uv add mcp-agent
122122
```
123123
</Step>
124124
</Steps>
@@ -129,6 +129,6 @@ mcp-agent includes optional extras for different LLM providers. Install the ones
129129

130130
## Next steps
131131

132-
- [Quickstart](/get-started/quickstart) – create a finder agent and run it locally.
133-
- [Deploy to Cloud](/get-started/cloud)publish your agent with `uvx mcp-agent deploy`.
134-
- [MCP Servers](/mcp-agent-sdk/mcp/overview) – learn how FastMCP and other servers plug into your agents.
132+
- [Quickstart](/get-started/quickstart) – create a basic agent and run it locally.
133+
- [Deploy to Cloud](/get-started/cloud)deploy your agent with `uvx mcp-agent deploy` as a remote MCP server.
134+
- [MCP Servers](/mcp-agent-sdk/mcp/overview) – learn how `mcp-agent` supports various MCP capabilities natively.

docs/get-started/welcome.mdx

Lines changed: 21 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,22 @@ icon: hand-wave
1212
className="rounded-2xl block"
1313
/>
1414

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.
15+
[`mcp-agent`](https://github.com/lastmile-ai/mcp-agent) is a simple, composable framework to build effective agents using [Model Context Protocol](https://modelcontextprotocol.io/introduction).
16+
17+
**mcp-agent**'s vision is that MCP is all you need to build agents, and that simple patterns are more robust than complex architectures for shipping high-quality agents.
18+
When you're ready to deploy, [`mcp-c`](https://docs.mcp-agent.com/get-started/cloud) let's you deploy any kind of MCP server to a managed Cloud. You can even deploy agents as MCP servers!
1619

1720
## Why teams pick mcp-agent
1821

1922
<CardGroup cols={2}>
20-
<Card title="Composable patterns" icon="puzzle-piece">
21-
Parallel, router, planner, evaluator—every pattern from Anthropic's guide ships as a first-class workflow.
22-
</Card>
2323
<Card title="MCP-native" icon="plug">
24-
Works with any MCP server. Drop in the filesystem, fetch, Slack, Jira, or your own FastMCP servers and start calling tools immediately.
24+
Fully implements the MCP spec, including auth, elicitation, sampling, and notifications.
25+
</Card>
26+
<Card title="Composable patterns" icon="puzzle-piece">
27+
Map-reduce, router, deep research, evaluator — every pattern from Anthropic's [Building Effective Agents](https://www.anthropic.com/research/building-effective-agents) guide ships as a first-class workflow.
2528
</Card>
26-
<Card title="Production ready" icon="shield">
27-
Durable execution with Temporal, structured logging, token accounting, observability hooks, and cloud deployment via the CLI.
29+
<Card title="Built for Production" icon="shield">
30+
Durable execution with Temporal, OpenTelemetry observability, and cloud deployment via the CLI.
2831
</Card>
2932
<Card title="Lightweight & Pythonic" icon="feather">
3033
Define an agent with a few lines of Python—mcp-agent handles the lifecycle, connections, and MCP server wiring for you.
@@ -60,25 +63,18 @@ if __name__ == "__main__":
6063

6164
<CardGroup cols={2}>
6265
<Card
63-
title="Install the toolkit"
64-
icon="arrow-down-to-line"
65-
href="/get-started/install"
66-
>
67-
Set up Python, optional MCP servers, and run the `mcp-agent` CLI with `uvx`.
68-
</Card>
69-
<Card
70-
title="Hello world in minutes"
66+
title="Quickstart"
7167
icon="rocket-launch"
7268
href="/get-started/quickstart"
7369
>
74-
Scaffold an agent with `uvx mcp-agent init` and run it locally.
70+
Scaffold an agent with `uvx mcp-agent init` and run it locally in under 5 minutes.
7571
</Card>
7672
<Card
77-
title="Deploy to the cloud"
73+
title="Deploy to Cloud"
7874
icon="cloud"
7975
href="/get-started/cloud"
8076
>
81-
Use `uvx mcp-agent deploy` to host your agent as a managed MCP server.
77+
Deploy any kind of MCP server using `mcp-c`. Use `uvx mcp-agent deploy` to host your agent as a managed MCP server.
8278
</Card>
8379
<Card
8480
title="Explore the patterns"
@@ -88,3 +84,10 @@ if __name__ == "__main__":
8884
Learn how to combine planner, router, evaluator, and more.
8985
</Card>
9086
</CardGroup>
87+
88+
### Build with LLMs
89+
90+
The docs are also available in [llms.txt format](https://llmstxt.org/):
91+
- [llms.txt](https://docs.mcp-agent.com/llms.txt) - A sitemap listing all documentation pages
92+
- [llms-full.txt](https://docs.mcp-agent.com/llms-full.txt) - The entire documentation in one file (may exceed context windows)
93+
- [docs MCP server](https://docs.mcp-agent.com/mcp) - Directly connect the docs to an MCP-compatible AI coding assistant.

0 commit comments

Comments
 (0)