Fix missing import in Tool Transformation docs. (#2108)

This commit is contained in:
Andrew McLachlan 2025-10-16 01:49:19 +01:00 committed by GitHub
commit 98fb0a6115
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -456,7 +456,7 @@ In the following example, we wrap a parent tool that accepts two arguments `x` a
```python {12, 15}
from fastmcp import FastMCP
from fastmcp.tools import Tool
from fastmcp.tools.tool_transform import forward
from fastmcp.tools.tool_transform import forward, ArgTransform
mcp = FastMCP()