In the Quick Start section, there is the following code @mcp.tool def greet(name: str) -> str: return f"Hello, {name}!" but it should be like this @mcp.tool() def greet(name: str) -> str: return f"Hello, {name}!" You have to put brackets after @tool, otherwise the code won't work correctly