Contributing #30
Labels
documentation
Improvements or additions to documentation
enhancement
New feature or request
help wanted
Extra attention is needed
Hey! Awesome project, I am literally in the middle of building something pretty much the same as this - but this is better. I'd love to take my efforts and incorporate them into this project. Are you open to contributions?
Some things I'd love to add immediately
x: Annotated[int, Field(description="...")]
results in the description in the json schema (looks like it already does but just needs some tests)x: list[int]
,x: list[str] | str | None
,x: MyModel
- this is actually hard because at least with claude desktop it seems unable to output anything other than an object mapping from string to string/float/number - so lists/nulls/sub-models end up output as json strings and thus fail validation. I have code that does this that I can contribute, I can see how it would fit into FastMCP without much trouble, just need to rework the use of validate_callx: Annotated[int, Field(1)]\n y: int
so like required arg after one with a "default" via pydantic's Field.less critical things
The text was updated successfully, but these errors were encountered: