Update fastmcp.mdx

This commit is contained in:
Jeremiah Lowin 2025-05-06 13:45:53 -04:00
commit cddbe56722

View file

@ -22,7 +22,10 @@ mcp = FastMCP(name="MyAssistantServer")
# You can also add instructions for how to interact with the server
mcp_with_instructions = FastMCP(
name="HelpfulAssistant",
instructions="This server provides data analysis tools. Call get_average() to analyze numerical data."
instructions="""
This server provides data analysis tools.
Call get_average() to analyze numerical data.
"""
)
```