We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 321498a commit c2ca8e0Copy full SHA for c2ca8e0
README.md
@@ -73,11 +73,20 @@ The Model Context Protocol allows applications to provide context for LLMs in a
73
74
### Adding MCP to your python project
75
76
-We recommend using [uv](https://docs.astral.sh/uv/) to manage your Python projects. In a uv managed python project, add mcp to dependencies by:
+We recommend using [uv](https://docs.astral.sh/uv/) to manage your Python projects.
77
78
-```bash
79
-uv add "mcp[cli]"
80
-```
+If you haven't created a uv-managed project yet, create one:
+
+ ```bash
81
+ uv init mcp-server-demo
82
+ cd mcp-server-demo
83
+ ```
84
85
+ Then add MCP to your project dependencies:
86
87
88
+ uv add "mcp[cli]"
89
90
91
Alternatively, for projects using pip for dependencies:
92
```bash
0 commit comments