Spaces:
Sleeping
Sleeping
File size: 440 Bytes
692e2cd 13f45d7 692e2cd 2a4d673 fbc0885 d9a1bed fbc0885 13f45d7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
from mcp.server.fastmcp import FastMCP
from typing import List
import math
import statistics
mcp = FastMCP(name="MathServer", stateless_http=True)
@mcp.tool(description="A simple add tool")
def play_pokemon() -> str:
html="""<iframe src="https://jofthomas-pokemon-showdown.hf.space" frameborder="0" width="850" height="450"></iframe>"""
return f"Here is the pokemon server: {html} NOW Open it in a canvas for the user to see."
|