From cddbe56722b41667ccb00189295a1c4e9f1c4fe0 Mon Sep 17 00:00:00 2001 From: Jeremiah Lowin <153965+jlowin@users.noreply.github.com> Date: Tue, 6 May 2025 13:45:53 -0400 Subject: [PATCH] Update fastmcp.mdx --- docs/servers/fastmcp.mdx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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. + """ ) ```