This commit is contained in:
Philipp Temminghoff 2025-12-22 22:51:36 +00:00 committed by GitHub
commit 2da1d21e69
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -467,7 +467,9 @@ class Query:
call_request = CallToolRequest(
method=method,
params=CallToolRequestParams(
name=params.get("name"), arguments=params.get("arguments", {})
name=params.get("name"),
arguments=params.get("arguments", {}),
_meta=params.get("_meta"),
),
)
handler = server.request_handlers.get(CallToolRequest)