Multiple_game_mcp / math_server.py
Jofthomas's picture
Upload 3 files
692e2cd verified
raw
history blame
184 Bytes
from mcp.server.fastmcp import FastMCP
mcp = FastMCP(name="MathServer", stateless_http=True)
@mcp.tool(description="A simple add tool")
def add_two(n: int) -> int:
return n + 2