From 5782ca3ea3b64516c5455b3bf13925522da84844 Mon Sep 17 00:00:00 2001 From: Ben Date: Sun, 28 Dec 2025 20:34:46 +0000 Subject: [PATCH] fix: use 'instructions' instead of 'description' in FastMCP init The FastMCP constructor doesn't accept a 'description' parameter. Changed to use 'instructions' parameter and switched to keyword arguments for clarity. --- server.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server.py b/server.py index 2ac5294..b3a1cb7 100644 --- a/server.py +++ b/server.py @@ -149,8 +149,8 @@ class PlexClient: # Initialize client and MCP server plex_client = PlexClient(PLEX_URL, PLEX_TOKEN, PLEX_CLIENT_ID) mcp = FastMCP( - "Plex MCP Server", - description="MCP server for interacting with Plex Media Server", + name="Plex MCP Server", + instructions="MCP server for interacting with Plex Media Server", )