Skip to content

Commit 82def68

Browse files
committed
Break up quickstart into 4 different ones based on personas
1 parent 10a2dd0 commit 82def68

14 files changed

+249
-34
lines changed

clients.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Clients"
2+
title: "Example Clients"
33
description: "A list of applications that support MCP integrations"
44
---
55

examples.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Examples
2+
title: Example Servers
33
description: 'A list of example servers and implementations'
44
---
55

images/quickstart-approve.png

88.9 KB
Loading

images/quickstart-developer.png

356 KB
Loading

images/quickstart-filesystem.png

2.51 MB
Loading

images/quickstart-hammer.png

117 KB
Loading

images/quickstart-menu.png

462 KB
Loading

images/quickstart-tools.png

194 KB
Loading

introduction.mdx

Lines changed: 32 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ At its core, MCP follows a client-server architecture where a host application c
1919
```mermaid
2020
flowchart LR
2121
subgraph "Your Computer"
22-
Host["MCP Host\n(Claude, IDEs, Tools)"]
22+
Host["Host with MCP Client\n(Claude, IDEs, Tools)"]
2323
S1["MCP Server A"]
2424
S2["MCP Server B"]
2525
S3["MCP Server C"]
@@ -44,23 +44,49 @@ flowchart LR
4444

4545
Choose the path that best fits your needs:
4646

47+
#### Quick Starts
4748
<CardGroup cols={2}>
4849
<Card
49-
title="Quickstart"
50+
title="For Claude Users"
5051
icon="bolt"
51-
href="/quickstart"
52+
href="/quickstart/user"
5253
>
53-
Build and connect to your first MCP server
54+
Get started using pre-built servers in Claude for Desktop to experience the power of MCP
5455
</Card>
5556
<Card
56-
title="Examples"
57+
title="For Server Developers"
58+
icon="bolt"
59+
href="/quickstart/server"
60+
>
61+
Get started building your own server to use in Claude for Desktop and other clients
62+
</Card>
63+
<Card
64+
title="For Client Developers"
65+
icon="bolt"
66+
href="/quickstart/client"
67+
>
68+
Get started building your own client that can integrate with all MCP servers
69+
</Card>
70+
<Card
71+
title="For Open Source Developers"
72+
icon="bolt"
73+
href="/quickstart/opensource"
74+
>
75+
Dig into the MCP spec and contribute to the ongoing development of MCP
76+
</Card>
77+
</CardGroup>
78+
79+
#### Examples
80+
<CardGroup cols={2}>
81+
<Card
82+
title="Example Servers"
5783
icon="grid"
5884
href="/examples"
5985
>
6086
Check out our gallery of official MCP servers and implementations
6187
</Card>
6288
<Card
63-
title="Clients"
89+
title="Example Clients"
6490
icon="cubes"
6591
href="/clients"
6692
>
@@ -71,13 +97,6 @@ Choose the path that best fits your needs:
7197
## Tutorials
7298

7399
<CardGroup cols={2}>
74-
<Card
75-
title="Building a MCP client"
76-
icon="outlet"
77-
href="/tutorials/building-a-client"
78-
>
79-
Learn how to build your first MCP client
80-
</Card>
81100
<Card
82101
title="Building MCP with LLMs"
83102
icon="comments"

mint.json

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,25 @@
4040
"navigation": [
4141
{
4242
"group": "Get Started",
43-
"pages": ["introduction", "quickstart", "examples", "clients"]
43+
"pages": [
44+
"introduction",
45+
{
46+
"group": "Quickstart",
47+
"pages": [
48+
"quickstart/user",
49+
"quickstart/server",
50+
"quickstart/client",
51+
"quickstart/opensource"
52+
]
53+
},
54+
"examples",
55+
"clients"
56+
]
4457
},
58+
4559
{
4660
"group": "Tutorials",
4761
"pages": [
48-
"tutorials/building-a-client",
4962
"tutorials/building-mcp-with-llms",
5063
"docs/tools/debugging",
5164
"docs/tools/inspector"

0 commit comments

Comments
 (0)