Skip to content

Commit 755e016

Browse files
committed
Post final QA
1 parent 92bd792 commit 755e016

File tree

4 files changed

+39
-456
lines changed

4 files changed

+39
-456
lines changed

python-mcp/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Python MCP: Connect Your LLM With the World
22

3-
This folder contains the source code for [Python MCP: Connect Your LLM With the World](https://realpython.com/python-mcp-connect-your-llm-with-world/).
3+
This folder contains the source code for [Python MCP: Connect Your LLM With the World](https://realpython.com/python-mcp/).
44

55
## Setup
66

77
Create a new virtual environment, and run the following command to install Python MCP and the additional requirements for this project:
88

99
```console
10-
(venv) $ python -m pip install "mcp[cli]"
10+
(venv) $ python -m pip install "mcp[cli]" pytest-asyncio
1111
```
1212

1313
You'll use [`pytest-asyncio`](https://realpython.com/pytest-python-testing/) to test your MCP server. With that, you've installed all the Python dependencies you'll need for this tutorial, and you're ready to dive into MCP!

python-mcp/pyproject.toml

Lines changed: 0 additions & 12 deletions
This file was deleted.

python-mcp/requirements.txt

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
annotated-types==0.7.0
2+
anyio==4.10.0
3+
attrs==25.3.0
4+
certifi==2025.8.3
5+
click==8.2.1
6+
h11==0.16.0
7+
httpcore==1.0.9
8+
httpx==0.28.1
9+
httpx-sse==0.4.1
10+
idna==3.10
11+
iniconfig==2.1.0
12+
jsonschema==4.25.1
13+
jsonschema-specifications==2025.9.1
14+
markdown-it-py==4.0.0
15+
mcp==1.14.0
16+
mdurl==0.1.2
17+
packaging==25.0
18+
pluggy==1.6.0
19+
pydantic==2.11.9
20+
pydantic-settings==2.10.1
21+
pydantic_core==2.33.2
22+
Pygments==2.19.2
23+
pytest==8.4.2
24+
pytest-asyncio==1.2.0
25+
python-dotenv==1.1.1
26+
python-multipart==0.0.20
27+
referencing==0.36.2
28+
rich==14.1.0
29+
rpds-py==0.27.1
30+
shellingham==1.5.4
31+
sniffio==1.3.1
32+
sse-starlette==3.0.2
33+
starlette==0.48.0
34+
typer==0.17.4
35+
typing-inspection==0.4.1
36+
typing_extensions==4.15.0
37+
uvicorn==0.35.0

0 commit comments

Comments
 (0)