You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guides/quickstart.mdx
+12-16Lines changed: 12 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,11 +3,15 @@ title: "Quickstart"
3
3
description: "Get started with MCP in less than 5 minutes"
4
4
---
5
5
6
-
<Notetype="warning">
7
-
MCP is currently in developer preview and only supports connecting to local servers running on your machine. Remote connections are not yet supported. This feature is only available in the Claude Desktop app, not the Claude web interface (claude.ai).
6
+
Give the Claude Desktop app the ability to interact with local data sources and tools! This guide will show you how to set up Model Context Protocol (MCP) and experience its capabilities in just 5 minutes.
7
+
8
+
<Note>
9
+
While this guide focuses on using Claude Desktop as an example MCP client, the protocol is open and can be implemented by any application. IDEs, AI tools, and other software can all act as MCP clients to access local services in a standardized way.
8
10
</Note>
9
11
10
-
Give the Claude Desktop app the ability to interact with local data sources and tools! This guide will show you how to set up Model Context Protocol (MCP) and experience its capabilities in just 5 minutes.
12
+
<Warning>
13
+
Claude Desktop's MCP support is currently in developer preview and only supports connecting to local servers running on your machine. Remote connections are not yet supported. MCP integration is only available in the Claude Desktop app, not the Claude web interface (claude.ai).
14
+
</Warning>
11
15
12
16
MCP is a protocol that enables secure connections between clients, such as Claude Desktop app, and local services. In this quickstart guide, you'll learn how to:
13
17
@@ -17,26 +21,22 @@ MCP is a protocol that enables secure connections between clients, such as Claud
17
21
18
22
## How MCP Works
19
23
20
-
MCP enables secure, controlled interactions between the Claude Desktop app and local services through a well-defined protocol:
24
+
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:
21
25
22
26
```mermaid
23
27
flowchart LR
24
28
subgraph "Your Computer"
25
-
CD[Claude Desktop]
29
+
Client["MCP Client\n(e.g. Claude Desktop)"]
26
30
MCP[MCP Server]
27
31
DB[(SQLite DB)]
28
32
29
-
CD <-->|MCP Protocol| MCP
33
+
Client <-->|MCP Protocol| MCP
30
34
MCP <-->|Local Access| DB
31
35
end
32
-
33
-
style CD fill:#e1e1e1
34
-
style MCP fill:#d4e6ff
35
-
style DB fill:#d4ffe1
36
36
```
37
37
38
38
1.**MCP Servers**: Small programs that expose specific capabilities (like database access) through a standardized interface
39
-
2.**Protocol**: A structured way for Claude Desktop to:
39
+
2.**Protocol**: An open standard that allows any MCP client to:
40
40
- Discover available capabilities
41
41
- Request actions securely
42
42
- Receive results and updates
@@ -288,8 +288,4 @@ Want to give Claude Desktop more local integration capabilities? Add these serve
288
288
Share your MCP creations and connect with other developers.
289
289
[Join us →](/community)
290
290
</Card>
291
-
</CardGroup>
292
-
293
-
<Note>
294
-
Remember: MCP is in developer preview and currently only supports local servers. The examples and capabilities shown here are only available in the Claude Desktop app, not the Claude web interface.
0 commit comments