Skip to content

Commit 30018f6

Browse files
committed
Minor tweaks to Python "first server" intro
1 parent bf595f7 commit 30018f6

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docs/first-server/python.mdx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ Let's build your first MCP server in Python! We'll create a weather server that
1111

1212
## Prerequisites
1313

14+
<Info>
15+
The following steps are for macOS. Guides for other platforms are coming soon.
16+
</Info>
17+
1418
<Steps>
1519
<Step title="Install Python">
1620
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
2125
```
2226
</Step>
2327

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+
2531
```bash
2632
brew install uv
2733
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
5460
## Create your server
5561

5662
<Steps>
57-
<Step title="Create project structure">
58-
```bash
59-
touch weather_server.py
60-
```
61-
</Step>
62-
6363
<Step title="Add the base code">
64-
In `weather_server.py`:
64+
Create a file `weather_server.py` and add the following:
6565

6666
```python
6767
import os

0 commit comments

Comments
 (0)