From e7aa228ead8e451b3c8e73385118c60463a4f627 Mon Sep 17 00:00:00 2001 From: YueGuobin Date: Wed, 10 Jun 2026 23:56:30 +0800 Subject: [PATCH] fix: Update link_reset description to match actual behavior (delete + recreate) --- gns3server/api/routes/mcp/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gns3server/api/routes/mcp/__init__.py b/gns3server/api/routes/mcp/__init__.py index f2a23247a..91cba3cc7 100644 --- a/gns3server/api/routes/mcp/__init__.py +++ b/gns3server/api/routes/mcp/__init__.py @@ -802,7 +802,7 @@ async def link_reset( project_id: Annotated[str, Field(description="UUID of the project")], link_id: Annotated[str, Field(description="UUID of the link")], ) -> list[dict[str, Any]]: - """Reset a link, clearing its state (counters, filters, etc.).""" + """Reset a link by deleting and recreating it. All filters, suspend state, and packet counters are cleared. The link will briefly go down then come back up.""" return await asyncio.to_thread(_run_handler_sync, reset_link_handler, { "project_id": project_id, "link_id": link_id, })