-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.py
31 lines (21 loc) · 793 Bytes
/
client.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from mcp import ClientSession, StdioServerParameters
from mcp.client.stdio import stdio_client
# Create server parameters for stdio connection
server_params = StdioServerParameters(
command="uv", # Executable
args=["run", "python", "image_server.py"], # Optional command line arguments
env=None, # Optional environment variables
)
async def run():
async with stdio_client(server_params) as (read, write):
async with ClientSession(
read, write,
) as session:
# Initialize the connection
await session.initialize()
# List available tools
tools = await session.list_tools()
print(tools)
if __name__ == "__main__":
import asyncio
asyncio.run(run())