Spaces:
Running
Running
| """ | |
| FastMCP Echo Server | |
| """ | |
| from fastmcp import FastMCP | |
| # Create server | |
| mcp = FastMCP("Echo Server") | |
| def echo(text: str) -> str: | |
| """Echo the input text""" | |
| return text | |
| """ | |
| FastMCP Echo Server | |
| """ | |
| from fastmcp import FastMCP | |
| # Create server | |
| mcp = FastMCP("Echo Server") | |
| def echo(text: str) -> str: | |
| """Echo the input text""" | |
| return text | |