File tree 1 file changed +5
-5
lines changed 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -14,16 +14,16 @@ The Model Context Protocol allows applications to provide context for LLMs in a
14
14
## Installation
15
15
16
16
``` bash
17
- uv add mcp-python
17
+ uv add mcp
18
18
```
19
19
20
20
## Quick Start
21
21
22
22
### Creating a Client
23
23
24
24
``` python
25
- from mcp_python import ClientSession
26
- from mcp_python .client.stdio import stdio_client
25
+ from mcp import ClientSession
26
+ from mcp .client.stdio import stdio_client
27
27
28
28
async with stdio_client(command = " path/to/server" ) as (read, write):
29
29
async with ClientSession(read, write) as session:
@@ -37,8 +37,8 @@ async with stdio_client(command="path/to/server") as (read, write):
37
37
### Creating a Server
38
38
39
39
``` python
40
- from mcp_python .server import Server
41
- from mcp_python .server.stdio import stdio_server
40
+ from mcp .server import Server
41
+ from mcp .server.stdio import stdio_server
42
42
43
43
# Create a server instance
44
44
server = Server(" example-server" )
You can’t perform that action at this time.
0 commit comments