We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a simple client demo:
from fastmcp import Client import asyncio async def main(): async with Client("mcp_server.py") as client: tools = await client.list_tools() print(f"Available tools: {tools}") asyncio.run(main())
That works as expectet with Version 2.1.2 but returns the follwoing error with version 2.2.0:
... mcp.shared.exceptions.McpError: 'FastMCP' object has no attribute 'get_tools'
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
No branches or pull requests
I have a simple client demo:
That works as expectet with Version 2.1.2 but returns the follwoing error with version 2.2.0:
The text was updated successfully, but these errors were encountered: