Skip to content

Commit d5c0549

Browse files
committed
fix: reorder meta argument to avoid a BC
1 parent 9b0efae commit d5c0549

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/mcp/client/session.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,8 +286,9 @@ async def call_tool(
286286
name: str,
287287
arguments: dict[str, Any] | None = None,
288288
read_timeout_seconds: timedelta | None = None,
289-
meta: dict[str, Any] | None = None,
290289
progress_callback: ProgressFnT | None = None,
290+
*,
291+
meta: dict[str, Any] | None = None,
291292
) -> types.CallToolResult:
292293
"""Send a tools/call request with optional progress callback support."""
293294

0 commit comments

Comments
 (0)