Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Jofthomas/Multiple_mcp_fastapi_template
Jofthomas
/
Multiple_game_mcp
like
0
Sleeping
App
Files
Files
xet
Community
Fetching metadata from the HF Docker repository...
30f4f7f
Multiple_game_mcp
/
math_server.py
Jofthomas
Upload 3 files
692e2cd
verified
about 1 month ago
raw
Copy download link
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