We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 169021c commit 8c081c3Copy full SHA for 8c081c3
docs/introduction.mdx
@@ -23,16 +23,17 @@ flowchart LR
23
Host["Host with MCP Client\n(Claude, IDEs, Tools)"]
24
S1["MCP Server A"]
25
S2["MCP Server B"]
26
- S3["MCP Server C"]
27
Host <-->|"MCP Protocol"| S1
28
Host <-->|"MCP Protocol"| S2
29
- Host <-->|"MCP Protocol"| S3
30
S1 <--> D1[("Local\nData Source A")]
31
S2 <--> D2[("Local\nData Source B")]
32
end
33
subgraph "Internet"
34
- S3 <-->|"Web APIs"| D3[("Remote\nService C")]
+ S3["MCP Server C"]
+ D3[("Remote\nService C")]
+ S3 <-->|"Web APIs"| D3
35
36
+ Host <-->|"MCP Protocol"| S3
37
```
38
39
- **MCP Hosts**: Programs like Claude Desktop, IDEs, or AI tools that want to access data through MCP
0 commit comments