refactor: Update FastMCP examples to use new import path

Update all FastMCP examples to use mcp.server.fastmcp instead of fastmcp.
Add tests to verify example servers work correctly.

Changes:
- Update import paths in all example files
- Create test_examples.py to verify functionality
- Fix test assertions to match actual response format
This commit is contained in:
David Soria Parra
2024-12-18 14:31:08 +00:00
parent fe75f43ee6
commit 15cd7df87f
9 changed files with 613 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
"""
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