We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad2ec44 commit 7f36822Copy full SHA for 7f36822
src/mcp/server/fastmcp/tools/base.py
@@ -23,7 +23,10 @@ class Tool(BaseModel):
23
name: str = Field(description="Name of the tool")
24
description: str = Field(description="Description of what the tool does")
25
parameters: dict[str, Any] = Field(description="JSON schema for tool parameters")
26
- output: dict[str, Any] | None = Field(description="JSON schema for tool output", default=None, )
+ output: dict[str, Any] | None = Field(
27
+ description="JSON schema for tool output",
28
+ default=None,
29
+ )
30
fn_metadata: FuncMetadata = Field(
31
description="Metadata about the function including a pydantic model for tool"
32
" arguments"
0 commit comments