From 7ac2c79ad93bba47094644103e2a02473299bb50 Mon Sep 17 00:00:00 2001 From: Jeremiah Lowin <153965+jlowin@users.noreply.github.com> Date: Sat, 31 May 2025 22:49:25 -0400 Subject: [PATCH] Update fastmcp.mdx --- docs/servers/fastmcp.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/servers/fastmcp.mdx b/docs/servers/fastmcp.mdx index 4967d6cfa..cfcd6452d 100644 --- a/docs/servers/fastmcp.mdx +++ b/docs/servers/fastmcp.mdx @@ -35,7 +35,7 @@ The `FastMCP` constructor accepts several arguments: * `instructions`: (Optional) Description of how to interact with this server. These instructions help clients understand the server's purpose and available functionality. * `lifespan`: (Optional) An async context manager function for server startup and shutdown logic. * `tags`: (Optional) A set of strings to tag the server itself. -* `tools`: (Optional) A list of tools to add to the server. In some cases, providing tools as a list of functions may be more convenient than using the `@mcp.tool` decorator. +* `tools`: (Optional) A list of tools (or functions to convert to tools) to add to the server. In some cases, providing tools programmatically may be more convenient than using the `@mcp.tool` decorator. * `**settings`: Keyword arguments corresponding to additional `ServerSettings` configuration ## Components