diff --git a/docs/servers/fastmcp.mdx b/docs/servers/fastmcp.mdx index bd9022b8c..87c322f9d 100644 --- a/docs/servers/fastmcp.mdx +++ b/docs/servers/fastmcp.mdx @@ -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. + """ ) ```