Spaces:
Running
Running
File size: 191 Bytes
cc20abf | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | """
FastMCP Echo Server
"""
from fastmcp import FastMCP
# Create server
mcp = FastMCP("Echo Server")
@mcp.tool()
def echo(text: str) -> str:
"""Echo the input text"""
return text
|