Skip to content

Commit 867c66c

Browse files
committed
Fixed links, changed article names, added clients page back to IA
1 parent 7ec5a88 commit 867c66c

File tree

5 files changed

+44
-16
lines changed

5 files changed

+44
-16
lines changed

introduction.mdx

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ flowchart LR
4444

4545
Choose the path that best fits your needs:
4646

47-
<CardGroup cols={2}>
47+
<CardGroup cols={1}>
4848
<Card
4949
title="Quickstart"
5050
icon="bolt"
@@ -59,6 +59,13 @@ Choose the path that best fits your needs:
5959
>
6060
Check out our gallery of official MCP servers and implementations
6161
</Card>
62+
<Card
63+
title="Clients"
64+
icon="cubes"
65+
href="/clients"
66+
>
67+
View the list of clients that support MCP integrations
68+
</Card>
6269
</CardGroup>
6370

6471
## Tutorials
@@ -72,11 +79,11 @@ Choose the path that best fits your needs:
7279
Learn how to build your first MCP client
7380
</Card>
7481
<Card
75-
title="Building MCP with Claude"
82+
title="Building MCP with LLMs"
7683
icon="comments"
77-
href="/building-a-client"
84+
href="/building-mcp-with-llms"
7885
>
79-
Learn how to use Claude to speed up your MCP development
86+
Learn how to use LLMs like Claude to speed up your MCP development
8087
</Card>
8188
</CardGroup>
8289

mint.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@
4040
"navigation": [
4141
{
4242
"group": "Get Started",
43-
"pages": ["introduction", "quickstart", "examples"]
43+
"pages": ["introduction", "quickstart", "examples", "clients"]
4444
},
4545
{
4646
"group": "Tutorials",
4747
"pages": [
4848
"tutorials/building-a-client",
49-
"tutorials/building-mcp-with-claude"
49+
"tutorials/building-mcp-with-llms"
5050
]
5151
},
5252
{

quickstart.mdx

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ We'll build a server that exposes two tools: `get-alerts` and `get-forecast`. Th
1919
</Frame>
2020

2121
<Note>
22-
Servers can connect to any client. We've chosen Claude desktop here for simplicity, but we also have guides on [building your own client](/tutorials/building-a-client)
22+
Servers can connect to any client. We've chosen Claude desktop here for simplicity, but we also have guides on [building your own client](/tutorials/building-a-client).
2323
</Note>
2424

2525
<Accordion title="Why Claude for Desktop and not Claude.ai?">
@@ -1067,7 +1067,7 @@ If Claude attempts to use the tools but they fail:
10671067

10681068
## Next steps
10691069

1070-
<CardGroup cols={1}>
1070+
<CardGroup cols={2}>
10711071
<Card
10721072
title="Building a client"
10731073
icon="outlet"
@@ -1083,10 +1083,17 @@ If Claude attempts to use the tools but they fail:
10831083
Check out our gallery of official MCP servers and implementations
10841084
</Card>
10851085
<Card
1086-
title="Core architecture"
1087-
icon="sitemap"
1088-
href="/docs/concepts/architecture"
1086+
title="Clients"
1087+
icon="cubes"
1088+
href="/clients"
10891089
>
1090-
Understand how MCP connects clients, servers, and LLMs
1090+
Learn about other MCP clients such as Zed and Sourcegraph
1091+
</Card>
1092+
<Card
1093+
title="Building MCP with LLMs"
1094+
icon="comments"
1095+
href="/building-mcp-with-llms"
1096+
>
1097+
Learn how to use LLMs like Claude to speed up your MCP development
10911098
</Card>
10921099
</CardGroup>

tutorials/building-a-client.mdx

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,13 +396,27 @@ If you see:
396396

397397
## Next steps
398398

399-
<CardGroup cols={1}>
399+
<CardGroup cols={2}>
400400
<Card
401401
title="Example servers"
402402
icon="grid"
403403
href="/examples"
404404
>
405405
Check out our gallery of official MCP servers and implementations
406+
</Card>
407+
<Card
408+
title="Clients"
409+
icon="cubes"
410+
href="/clients"
411+
>
412+
View the list of clients that support MCP integrations
413+
</Card>
414+
<Card
415+
title="Building MCP with LLMs"
416+
icon="comments"
417+
href="/building-mcp-with-llms"
418+
>
419+
Learn how to use LLMs like Claude to speed up your MCP development
406420
</Card>
407421
<Card
408422
title="Core architecture"

tutorials/building-mcp-with-claude.mdx renamed to tutorials/building-mcp-with-llms.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
title: "Building MCP with Claude"
3-
description: "Speed up your MCP development with Claude!"
2+
title: "Building MCP with LLMs"
3+
description: "Speed up your MCP development using LLMs such as Claude!"
44
---
55

6-
This guide will help you use Claude to build custom Model Context Protocol (MCP) servers and clients.
6+
This guide will help you use LLMs to help you build custom Model Context Protocol (MCP) servers and clients. We'll be focusing on Claude for this tutorial, but you can do this with any frontier LLM.
77

88
## Preparing the documentation
99

0 commit comments

Comments
 (0)