Return CallToolResult from convert_result instead of a tuple#2175
Open
Return CallToolResult from convert_result instead of a tuple#2175
CallToolResult from convert_result instead of a tuple#2175Conversation
`convert_result()` was returning a bare `(unstructured, structured)` tuple when an output schema was present, leaking an internal detail through `MCPServer.call_tool`'s public API. The declared return type `Sequence[ContentBlock] | dict[str, Any]` was also wrong - the `dict` branch was unreachable. Now `convert_result()` returns a `CallToolResult` directly, and `MCPServer.call_tool` is typed as `CallToolResult | Sequence[ContentBlock]`. The tuple-unpacking and dead `dict` branches in `_handle_call_tool` are removed. Github-Issue: #1251
Kludex
commented
Feb 28, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
convert_result()now returns aCallToolResultdirectly when structured output is present, instead of a bare(unstructured, structured)tuple that leaked through the public API.MCPServer.call_toolreturn type corrected fromSequence[ContentBlock] | dict[str, Any]toCallToolResult | Sequence[ContentBlock].dictbranches from_handle_call_tool.Closes #1251
Test plan
test_func_metadata.py,test_tool_manager.py, andtest_server.pyupdated and passing (170 tests)ruff checkandpyrightclean on all changed files