File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,10 @@ Let's build your first MCP server in Python! We'll create a weather server that
11
11
12
12
## Prerequisites
13
13
14
+ <Info >
15
+ The following steps are for macOS. Guides for other platforms are coming soon.
16
+ </Info >
17
+
14
18
<Steps >
15
19
<Step title = " Install Python" >
16
20
You'll need Python 3.10 or higher:
@@ -21,7 +25,9 @@ Let's build your first MCP server in Python! We'll create a weather server that
21
25
```
22
26
</Step >
23
27
24
- <Step title = " Install uv (https://docs.astral.sh/uv/) via homebrew" >
28
+ <Step title = " Install uv via homebrew" >
29
+ See https://docs.astral.sh/uv/ for more information.
30
+
25
31
``` bash
26
32
brew install uv
27
33
uv --version # Should be 0.4.18 or higher
@@ -54,14 +60,8 @@ Let's build your first MCP server in Python! We'll create a weather server that
54
60
## Create your server
55
61
56
62
<Steps >
57
- <Step title = " Create project structure" >
58
- ``` bash
59
- touch weather_server.py
60
- ```
61
- </Step >
62
-
63
63
<Step title = " Add the base code" >
64
- In ` weather_server.py ` :
64
+ Create a file ` weather_server.py ` and add the following :
65
65
66
66
``` python
67
67
import os
You can’t perform that action at this time.
0 commit comments