Skip to content

Commit 5d37429

Browse files
committed
fix all image links to use dataset repo
1 parent ed0a554 commit 5d37429

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

units/en/unit0/introduction.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Welcome to the 🤗 Model Context Protocol (MCP) Course
22

3-
![MCP Course thumbnail](https://huggingface.co/mcp-course/images/resolve/main/unit0/1.png)
3+
![MCP Course thumbnail](https://huggingface.co/datasets/mcp-course/images/resolve/main/unit0/1.png)
44

55
Welcome to the most exciting topic in AI today: **Model Context Protocol (MCP)**!
66

@@ -98,7 +98,7 @@ Each chapter in this course is designed **to be completed in 1 week, with approx
9898

9999
Since there's a deadline, we provide you a recommended pace:
100100

101-
![Recommended Pace](https://huggingface.co/mcp-course/images/resolve/main/unit0/2.png)
101+
![Recommended Pace](https://huggingface.co/datasets/mcp-course/images/resolve/main/unit0/2.png)
102102

103103
## How to get the most out of the course?
104104

@@ -108,7 +108,7 @@ To get the most out of the course, we have some advice:
108108
2. **Do the quizzes and assignments**: the best way to learn is through hands-on practice and self-assessment.
109109
3. **Define a schedule to stay in sync**: you can use our recommended pace schedule below or create yours.
110110

111-
![Course advice](https://huggingface.co/mcp-course/images/resolve/main/unit0/3.png)
111+
![Course advice](https://huggingface.co/datasets/mcp-course/images/resolve/main/unit0/3.png)
112112

113113
## Who are we
114114

units/en/unit1/architectural-components.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ In the previous section, we discussed the key concepts and terminology of MCP. N
66

77
The Model Context Protocol (MCP) is built on a client-server architecture that enables structured communication between AI models and external systems.
88

9-
![MCP Architecture](https://huggingface.co/mcp-course/images/resolve/main/unit1/4.png)
9+
![MCP Architecture](https://huggingface.co/datasets/mcp-course/images/resolve/main/unit1/4.png)
1010

1111
The MCP architecture consists of three primary components, each with well-defined roles and responsibilities: Host, Client, and Server. We touched on these in the previous section, but let's dive deeper into each component and their responsibilities.
1212

units/en/unit1/communication-protocol.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ At its core, MCP uses **JSON-RPC 2.0** as the message format for all communicati
1616
- Language-agnostic, supporting implementation in any programming environment
1717
- Well-established, with clear specifications and widespread adoption
1818

19-
![message types](https://huggingface.co/mcp-course/images/resolve/main/unit1/5.png)
19+
![message types](https://huggingface.co/datasets/mcp-course/images/resolve/main/unit1/5.png)
2020

2121
The protocol defines three types of messages:
2222

units/en/unit1/gradio-mcp.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ http://your-server:port/gradio_api/mcp/sse
7979

8080
The application itself will still be accessible and it looks like this:
8181

82-
![Gradio MCP Server](https://huggingface.co/mcp-course/images/resolve/main/unit1/7.png)
82+
![Gradio MCP Server](https://huggingface.co/datasets/mcp-course/images/resolve/main/unit1/7.png)
8383

8484
## How It Works Behind the Scenes
8585

units/en/unit1/key-concepts.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ The **M×N Integration Problem** refers to the challenge of connecting M differe
1717

1818
Without a protocol like MCP, developers would need to create M×N custom integrations—one for each possible pairing of an AI application with an external capability.
1919

20-
![Without MCP](https://huggingface.co/mcp-course/images/resolve/main/unit1/1.png)
20+
![Without MCP](https://huggingface.co/datasets/mcp-course/images/resolve/main/unit1/1.png)
2121

2222
Each AI application would need to integrate with each tool/data source individually. This is a very complex and expensive process which introduces a lot of friction for developers, and high maintenance costs.
2323

2424
### With MCP (M+N Solution)
2525

2626
MCP transforms this into an M+N problem by providing a standard interface: each AI application implements the client side of MCP once, and each tool/data source implements the server side once. This dramatically reduces integration complexity and maintenance burden.
2727

28-
![With MCP](https://huggingface.co/mcp-course/images/resolve/main/unit1/2.png)
28+
![With MCP](https://huggingface.co/datasets/mcp-course/images/resolve/main/unit1/2.png)
2929

3030
Each AI application implements the client side of MCP once, and each tool/data source implements the server side once.
3131

@@ -45,7 +45,7 @@ When documenting our applications and communincating with the community, we shou
4545

4646
Just like client server relationships in HTTP, MCP has a client and a server.
4747

48-
![MCP Components](https://huggingface.co/mcp-course/images/resolve/main/unit1/3.png)
48+
![MCP Components](https://huggingface.co/datasets/mcp-course/images/resolve/main/unit1/3.png)
4949

5050
- **Host**: The user-facing AI application that end-users interact with directly. Examples include Anthropic's Claude Desktop, AI-enhanced IDEs like Cursor, inference libraries like Hugging Face Python SDK, or custom applications built in libraries like LangChain or smolagents. Hosts initiate connections to MCP Servers and orchestrate the overall flow between user requests, LLM processing, and external tools.
5151

units/en/unit1/sdk.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ You can then open the MCP Inspector at [http://127.0.0.1:6274](http://127.0.0.1:
141141

142142
You'll see the server's capabilities and the ability to call them via the UI.
143143

144-
![MCP Inspector]([./images/mcp-inspector.png](https://huggingface.co/mcp-course/images/resolve/main/unit1/6.png)
144+
![MCP Inspector]([./images/mcp-inspector.png](https://huggingface.co/datasets/mcp-course/images/resolve/main/unit1/6.png)
145145

146146
## MCP SDKs
147147

units/en/unit2/introduction.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Before proceeding with this unit, make sure you:
4040

4141
We'll build a sentiment analysis application that consists of three main parts: the server, the client, and the deployment.
4242

43-
![sentiment analysis application](https://huggingface.co/mcp-course/images/resolve/main/unit2/1.png)
43+
![sentiment analysis application](https://huggingface.co/datasets/mcp-course/images/resolve/main/unit2/1.png)
4444

4545
### Server Side
4646

0 commit comments

Comments
 (0)