Skip to content

Commit de659f7

Browse files
committed
added debugging/inspector back to IA, added link to final client implementation to the top of the tutorial
1 parent ddb19be commit de659f7

File tree

4 files changed

+27
-27
lines changed

4 files changed

+27
-27
lines changed

introduction.mdx

Lines changed: 13 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,19 @@ Choose the path that best fits your needs:
8585
>
8686
Learn how to use LLMs like Claude to speed up your MCP development
8787
</Card>
88+
<Card
89+
title="Debugging Guide"
90+
icon="bug"
91+
href="/docs/tools/debugging">
92+
Learn how to effectively debug MCP servers and integrations
93+
</Card>
94+
<Card
95+
title="MCP Inspector"
96+
icon="magnifying-glass"
97+
href="/docs/tools/inspector"
98+
>
99+
Test and inspect your MCP servers with our interactive debugging tool
100+
</Card>
88101
</CardGroup>
89102

90103
## Explore MCP
@@ -136,26 +149,6 @@ Dive deeper into MCP's core concepts and capabilities:
136149
</Card>
137150
</CardGroup>
138151

139-
## Development tools
140-
141-
Essential tools for building and debugging MCP servers:
142-
143-
<CardGroup cols={2}>
144-
<Card
145-
title="Debugging Guide"
146-
icon="bug"
147-
href="/docs/tools/debugging">
148-
Learn how to effectively debug MCP servers and integrations
149-
</Card>
150-
<Card
151-
title="MCP Inspector"
152-
icon="magnifying-glass"
153-
href="/docs/tools/inspector"
154-
>
155-
Test and inspect your MCP servers with our interactive debugging tool
156-
</Card>
157-
</CardGroup>
158-
159152
## Contributing
160153

161154
Want to contribute? Check out [@modelcontextprotocol](https://github.com/modelcontextprotocol) on GitHub to join our growing community of developers building with MCP.

mint.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@
4646
"group": "Tutorials",
4747
"pages": [
4848
"tutorials/building-a-client",
49-
"tutorials/building-mcp-with-llms"
49+
"tutorials/building-mcp-with-llms",
50+
"docs/tools/debugging",
51+
"docs/tools/inspector"
5052
]
5153
},
5254
{

quickstart.mdx

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1065,6 +1065,10 @@ If Claude attempts to use the tools but they fail:
10651065
</Accordion>
10661066
</AccordionGroup>
10671067

1068+
<Note>
1069+
For more advanced troubleshooting, check out our guide on [Debugging MCP](/docs/tools/debugging)
1070+
</Note>
1071+
10681072
## Next steps
10691073

10701074
<CardGroup cols={2}>
@@ -1083,11 +1087,10 @@ If Claude attempts to use the tools but they fail:
10831087
Check out our gallery of official MCP servers and implementations
10841088
</Card>
10851089
<Card
1086-
title="Clients"
1087-
icon="cubes"
1088-
href="/clients"
1089-
>
1090-
Learn about other MCP clients such as Zed and Sourcegraph
1090+
title="Debugging Guide"
1091+
icon="bug"
1092+
href="/docs/tools/debugging">
1093+
Learn how to effectively debug MCP servers and integrations
10911094
</Card>
10921095
<Card
10931096
title="Building MCP with LLMs"

tutorials/building-a-client.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@ title: "Building MCP clients"
33
description: "Learn how to build your first client in MCP"
44
---
55

6-
In this tutorial, you'll learn how to build a client application that connects to MCP servers. It helps to have gone through the [Quickstart tutorial](/quickstart) that guides you through the basic of building your first server.
6+
In this tutorial, you'll learn how to build a LLM-powered chatbot client that connects to MCP servers. It helps to have gone through the [Quickstart tutorial](/quickstart) that guides you through the basic of building your first server.
77

88
<Tabs>
99
<Tab title="Python">
1010

11+
You can find the complete code for this tutorial [here.](https://gist.github.com/zckly/f3f28ea731e096e53b39b47bf0a2d4b1)
12+
1113
## System Requirements
1214

1315
Before starting, ensure your system meets these requirements:

0 commit comments

Comments
 (0)