-
Notifications
You must be signed in to change notification settings - Fork 752
New issue
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
Fastmcp tool parameter parsing type error #381
Comments
I experienced this same issue with this function signature: def tool(account_id: str):
... It was resolved once I updated it to >>> import json
>>> json.loads("1.2")
1.2 |
Can you add more information, such as the version of the SDK? |
I'm using version 1.3.0, but I saw that the latest version seems to have fixed this problem.
Thank you very much for your reply. |
I suspect the problem is coming from this, I've also encountered similar problem |
Seems like there is a PR trying to address this |
I can confirm the same bug. When client tries to call a functon of arg
|
When I define the tool parameter as string, the parameter parsing function of fastmcp parses the numeric string I pass in into a numeric value.
test output:
Here, json.loads will parse the incoming string "1.2" into the floating point number 1.2
So, when I use pydantic to define parameters in tool, a validation error occurs
Is my understanding correct?
The text was updated successfully, but these errors were encountered: