mirror of
https://github.com/PrefectHQ/fastmcp.git
synced 2026-08-09 07:09:11 +02:00
14 lines
189 B
Python
14 lines
189 B
Python
"""
|
|
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
|