Spaces:
Runtime error
Runtime error
File size: 284 Bytes
2cc184a | 1 2 3 4 5 6 7 8 9 | from smolagents.mcp_client import MCPClient
with MCPClient(
{"url": "https://abidlabs-mcp-tool-http.hf.space/gradio_api/mcp/sse", 'transport': 'sse'},
) as tools:
# Tools from the remote server are available
print("\n".join(f"{t.name}: {t.description}" for t in tools))
|