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 c78d1ac commit 5920bd2Copy full SHA for 5920bd2
src/mcp/server/fastmcp/server.py
@@ -381,7 +381,7 @@ def decorator(fn: AnyFunction) -> AnyFunction:
381
382
# Get all function params except 'ctx' or any parameter of type Context
383
sig = inspect.signature(fn)
384
- func_params = set()
+ func_params: set[str] = set()
385
for param_name, param in sig.parameters.items():
386
# Skip context parameters
387
if param_name == "ctx" or (
0 commit comments