File tree Expand file tree Collapse file tree 1 file changed +5
-13
lines changed Expand file tree Collapse file tree 1 file changed +5
-13
lines changed Original file line number Diff line number Diff line change @@ -33,17 +33,16 @@ Let's build your first MCP server in Python! We'll create a weather server that
33
33
```
34
34
</Step >
35
35
36
- <Step title = " Create a new project" >
36
+ <Step title = " Create a new project using the MCP project creator " >
37
37
``` bash
38
- mkdir weather-service
39
- cd weather-service
40
- uv init --package --app --name weather-service
38
+ uvx create-mcp-server --path weather_service
39
+ cd weather_service
41
40
```
42
41
</Step >
43
42
44
- <Step title = " Install dependencies" >
43
+ <Step title = " Install additional dependencies" >
45
44
``` bash
46
- uv add mcp requests python-dotenv
45
+ uv add requests python-dotenv
47
46
```
48
47
</Step >
49
48
@@ -59,13 +58,6 @@ Let's build your first MCP server in Python! We'll create a weather server that
59
58
## Create your server
60
59
61
60
<Steps >
62
- <Step title = " Create project structure" >
63
- ``` bash
64
- mkdir -p weather_service/src/weather_service
65
- touch weather_service/src/weather_service/server.py
66
- ```
67
- </Step >
68
-
69
61
<Step title = " Add the base imports and setup" >
70
62
In ` weather_service/src/weather_service/server.py `
71
63
``` python
You can’t perform that action at this time.
0 commit comments