Skip to content

Commit 7e6bed6

Browse files
committed
resized logo
1 parent 47bfa61 commit 7e6bed6

File tree

4 files changed

+33
-14
lines changed

4 files changed

+33
-14
lines changed

docs/guides/first-server-python.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Your First MCP Server (Python)"
2+
title: "Python"
33
description: "Create a simple MCP server in Python in 15 minutes"
44
---
55

docs/guides/first-server-ts.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Your First MCP Server (TypeScript)"
2+
title: "TypeScript"
33
description: "Create a simple MCP server in TypeScript in 15 minutes"
44
---
55

docs/guides/quickstart.mdx

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ MCP is a protocol that enables secure connections between clients, such as Claud
1919
- Connect Claude Desktop to it through MCP
2020
- Query and analyze your data securely
2121

22-
## How MCP Works
22+
## How MCP works
2323

2424
MCP is an open protocol that enables secure, controlled interactions between any compatible client application (like Claude Desktop, IDEs, or other AI tools) and local services:
2525

@@ -42,6 +42,28 @@ flowchart LR
4242
- Receive results and updates
4343
3. **Local Only**: All communication happens entirely on your machine - no data leaves your computer
4444

45+
## MCP clients
46+
47+
While this guide demonstrates MCP using Claude Desktop, several other applications support MCP integration:
48+
49+
<CardGroup cols={2}>
50+
<Card
51+
title="Zed Editor"
52+
icon="pen-to-square"
53+
href="https://zed.dev">
54+
A high-performance, multiplayer code editor with built-in MCP support for AI-powered coding assistance
55+
</Card>
56+
57+
<Card
58+
title="Sourcegraph"
59+
icon="magnifying-glass"
60+
href="https://sourcegraph.com">
61+
Code intelligence platform featuring MCP integration for enhanced code search and analysis capabilities
62+
</Card>
63+
</CardGroup>
64+
65+
Each client may implement MCP features differently or support different capabilities. Check their respective documentation for specific setup instructions and supported features.
66+
4567
## Prerequisites
4668

4769
- macOS (Windows/Linux guides coming soon)
@@ -273,7 +295,7 @@ Want to give Claude Desktop more local integration capabilities? Add these serve
273295
</Accordion>
274296
</AccordionGroup>
275297
276-
## Next Steps
298+
## Next steps
277299
278300
<CardGroup cols={3}>
279301
<Card title="Build Custom Servers" icon="code" href="/docs/guides/first-server-python">

mint.json

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,9 @@
1212
"light": "#FAFAFA",
1313
"dark": "#09090b"
1414
},
15-
"topbarLinks": [
16-
{
17-
"name": "Support",
18-
"url": "mailto:[email protected]"
19-
}
20-
],
15+
"topbarLinks": [],
2116
"topbarCtaButton": {
22-
"name": "Github",
17+
"name": "GitHub",
2318
"url": "https://github.com/modelcontextprotocol"
2419
},
2520
"tabs": [
@@ -32,7 +27,7 @@
3227
{
3328
"name": "Documentation",
3429
"icon": "book-open-cover",
35-
"url": "https://mintlify.com/docs"
30+
"url": "https://modelcontextprotocol.io"
3631
},
3732
{
3833
"name": "Python SDK",
@@ -48,9 +43,11 @@
4843
"navigation": [
4944
{
5045
"group": "Get Started",
46+
"pages": ["introduction", "docs/guides/quickstart"]
47+
},
48+
{
49+
"group": "Your First MCP Server",
5150
"pages": [
52-
"introduction",
53-
"docs/guides/quickstart",
5451
"docs/guides/first-server-python",
5552
"docs/guides/first-server-ts"
5653
]

0 commit comments

Comments
 (0)