fix architecture diagram - #873
Merged
jonathanhefner merged 2 commits intoJul 2, 2025
Merged
Conversation
jonathanhefner
left a comment
Member
There was a problem hiding this comment.
I think both versions of the diagram are correct, but show different scenarios. The first version shows three local MCP servers, with one server connecting to a remote service. The second version shows two local MCP servers and one remote MCP server.
Perhaps we could combine the two versions by changing "Local Data Source B" to "Remote Service B"? That would show all three combinations.
Contributor
Author
|
I think that's a good idea. Here's the current (updated) version: flowchart LR
subgraph "Your Computer"
Host["Host with MCP Client<br/>(Claude, IDEs, Tools)"]
S1["MCP Server A"]
S2["MCP Server B"]
D1[("Local<br/>Data Source A")]
Host <-->|"MCP Protocol"| S1
Host <-->|"MCP Protocol"| S2
S1 <--> D1
end
subgraph "Internet"
S3["MCP Server C"]
D2[("Remote<br/>Service B")]
D3[("Remote<br/>Service C")]
S2 <-->|"Web APIs"| D2
S3 <-->|"Web APIs"| D3
end
Host <-->|"MCP Protocol"| S3
|
jonathanhefner
approved these changes
Jul 2, 2025
Member
|
Thank you, @kentcdodds! 😄 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation and Context
I noticed the diagram showed the MCP Server representing a remote connection was under "Your Computer" which is misleading:
I've changed it so it's under "Internet" to be more clear about where the server code actually runs:
How Has This Been Tested?
N/A
Breaking Changes
N/A
Types of changes
Checklist