49b9bb6724
Deploy Docs / deploy-docs (push) Failing after 1s
Conformance Tests / client-conformance (push) Failing after 3s
Conformance Tests / server-conformance (push) Failing after 1s
GitHub Actions Security Analysis / zizmor (push) Failing after 1s
CI / checks (push) Failing after 59m20s
CI / all-green (push) Waiting to run
20 lines
610 B
Python
20 lines
610 B
Python
import asyncio
|
|
|
|
from mcp import ClientSessionGroup, StdioServerParameters
|
|
|
|
|
|
async def main() -> None:
|
|
library = StdioServerParameters(command="uv", args=["run", "mcp", "run", "library_server.py"])
|
|
web = StdioServerParameters(command="uv", args=["run", "mcp", "run", "web_server.py"])
|
|
|
|
async with ClientSessionGroup() as group:
|
|
await group.connect_to_server(library)
|
|
await group.connect_to_server(web)
|
|
|
|
result = await group.call_tool("search", {"query": "model context protocol"})
|
|
print(result.structured_content)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
asyncio.run(main())
|