25
25
from mcp .server .stdio import stdio_server
26
26
from mcp .shared .context import RequestContext
27
27
from mcp .types import (
28
+ AnyFunction ,
28
29
EmbeddedResource ,
29
30
GetPromptResult ,
30
31
ImageContent ,
@@ -165,7 +166,7 @@ def get_context(self) -> "Context":
165
166
return Context (request_context = request_context , fastmcp = self )
166
167
167
168
async def call_tool (
168
- self , name : str , arguments : dict
169
+ self , name : str , arguments : dict [ str , Any ]
169
170
) -> Sequence [TextContent | ImageContent | EmbeddedResource ]:
170
171
"""Call a tool by name with arguments."""
171
172
context = self .get_context ()
@@ -214,7 +215,7 @@ async def read_resource(self, uri: AnyUrl | str) -> ReadResourceContents:
214
215
215
216
def add_tool (
216
217
self ,
217
- fn : Callable ,
218
+ fn : AnyFunction ,
218
219
name : str | None = None ,
219
220
description : str | None = None ,
220
221
) -> None :
@@ -230,7 +231,9 @@ def add_tool(
230
231
"""
231
232
self ._tool_manager .add_tool (fn , name = name , description = description )
232
233
233
- def tool (self , name : str | None = None , description : str | None = None ) -> Callable :
234
+ def tool (
235
+ self , name : str | None = None , description : str | None = None
236
+ ) -> Callable [[AnyFunction ], AnyFunction ]:
234
237
"""Decorator to register a tool.
235
238
236
239
Tools can optionally request a Context object by adding a parameter with the
@@ -263,7 +266,7 @@ async def async_tool(x: int, context: Context) -> str:
263
266
"Did you forget to call it? Use @tool() instead of @tool"
264
267
)
265
268
266
- def decorator (fn : Callable ) -> Callable :
269
+ def decorator (fn : AnyFunction ) -> AnyFunction :
267
270
self .add_tool (fn , name = name , description = description )
268
271
return fn
269
272
@@ -284,7 +287,7 @@ def resource(
284
287
name : str | None = None ,
285
288
description : str | None = None ,
286
289
mime_type : str | None = None ,
287
- ) -> Callable :
290
+ ) -> Callable [[ AnyFunction ], AnyFunction ] :
288
291
"""Decorator to register a function as a resource.
289
292
290
293
The function will be called when the resource is read to generate its content.
@@ -328,7 +331,7 @@ async def get_weather(city: str) -> str:
328
331
"Did you forget to call it? Use @resource('uri') instead of @resource"
329
332
)
330
333
331
- def decorator (fn : Callable ) -> Callable :
334
+ def decorator (fn : AnyFunction ) -> AnyFunction :
332
335
# Check if this should be a template
333
336
has_uri_params = "{" in uri and "}" in uri
334
337
has_func_params = bool (inspect .signature (fn ).parameters )
@@ -376,7 +379,7 @@ def add_prompt(self, prompt: Prompt) -> None:
376
379
377
380
def prompt (
378
381
self , name : str | None = None , description : str | None = None
379
- ) -> Callable :
382
+ ) -> Callable [[ AnyFunction ], AnyFunction ] :
380
383
"""Decorator to register a prompt.
381
384
382
385
Args:
@@ -417,7 +420,7 @@ async def analyze_file(path: str) -> list[Message]:
417
420
"Did you forget to call it? Use @prompt() instead of @prompt"
418
421
)
419
422
420
- def decorator (func : Callable ) -> Callable :
423
+ def decorator (func : AnyFunction ) -> AnyFunction :
421
424
prompt = Prompt .from_function (func , name = name , description = description )
422
425
self .add_prompt (prompt )
423
426
return func
0 commit comments