File size: 189 Bytes
cc20abf
 
 
 
 
 
 
 
 
 
09438a8
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