Add two numbers
(a: int, b: int)
| 5 | |
| 6 | @mcp.tool() |
| 7 | def add(a: int, b: int) -> int: |
| 8 | """Add two numbers""" |
| 9 | return a + b |
| 10 | |
| 11 | @mcp.tool() |
| 12 | def multiply(a: int, b: int) -> int: |
nothing calls this directly
no outgoing calls
no test coverage detected