Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
FastMCP
Claim
by
wanderingnature
GitHub
Security
Developer Tools
OS Automation
Python
MIT License
2
Reddit
Discord
Overview
Inspect
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
examples
fastmcp
examples/fastmcp/complex_inputs.py
examples/fastmcp/desktop.py
examples/fastmcp/echo_prompt_args.py
examples/fastmcp/echo_prompt.py
examples/fastmcp/echo.py
examples/fastmcp/edge_case_prompts.py
examples/fastmcp/memory.py
examples/fastmcp/parameter_descriptions.py
examples/fastmcp/prompt_complex_data.py
examples/fastmcp/readme-quickstart.py
examples/fastmcp/screenshot.py
examples/fastmcp/simple_echo.py
examples/fastmcp/text_me.py
examples/fastmcp/unicode_example.py
""" FastMCP Echo Server """ from mcp.server.fastmcp import FastMCP # Create server mcp = FastMCP("Echo Server") @mcp.tool() def echo(text: str) -> str: """Echo the input text""" return text