remove empty parens from prompt

This commit is contained in:
Jeremiah Lowin 2025-06-05 14:56:10 -04:00
commit d64077b03b
6 changed files with 14 additions and 14 deletions

View file

@ -5,7 +5,7 @@ description: Properly use instance methods, class methods, and static methods wi
icon: at
---
FastMCP's decorator system is designed to work with functions, but you may see unexpected behavior if you try to decorate an instance or class method. This guide explains the correct approach for using methods with all FastMCP decorators (`@tool`, `@resource()`, and `@prompt()`).
FastMCP's decorator system is designed to work with functions, but you may see unexpected behavior if you try to decorate an instance or class method. This guide explains the correct approach for using methods with all FastMCP decorators (`@tool`, `@resource`, and `.prompt`).
## Why Are Methods Hard?