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 b01e276 commit 39e1c9cCopy full SHA for 39e1c9c
units/en/unit3/build-mcp-server.mdx
@@ -52,14 +52,30 @@ You'll implement three essential tools that establish patterns for the entire au
52
53
### Starter Code
54
55
+Clone the starter code repository:
56
+
57
+```bash
58
+git clone https://github.com/huggingface/mcp-course.git
59
+```
60
61
Navigate to the starter code directory:
62
63
```bash
-cd projects/unit3/build-mcp-server/starter
64
+cd mcp-course/projects/unit3/build-mcp-server/starter
65
```
66
67
Install dependencies:
68
69
+<Tip>
70
71
+You might want to create a virtual environment for this project:
72
73
74
+uv venv .venv
75
+source .venv/bin/activate # On Windows use: .venv\Scripts\activate
76
77
+</Tip>
78
79
80
uv sync --all-extras
81
0 commit comments