From 3cb5579253e16709d73b1f468e8ca862eb0271e2 Mon Sep 17 00:00:00 2001 From: buyua9 Date: Wed, 8 Apr 2026 02:48:50 +0800 Subject: [PATCH] fix(docs): correct FastMCP tool name in welcome docs (#3781) --- docs/getting-started/welcome.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started/welcome.mdx b/docs/getting-started/welcome.mdx index 28932284f..f7af6bb1d 100644 --- a/docs/getting-started/welcome.mdx +++ b/docs/getting-started/welcome.mdx @@ -105,7 +105,7 @@ from fastmcp import Client async def main(): async with Client("https://gofastmcp.com/mcp") as client: result = await client.call_tool( - name="SearchFastMcp", + name="search_fast_mcp", arguments={"query": "deploy a FastMCP server"} ) print(result)