Update README.md about client.callTool#141
Merged
jspahrsummers merged 1 commit intomodelcontextprotocol:mainfrom Jan 27, 2025
Merged
Update README.md about client.callTool#141jspahrsummers merged 1 commit intomodelcontextprotocol:mainfrom
client.callTool#141jspahrsummers merged 1 commit intomodelcontextprotocol:mainfrom
Conversation
9 tasks
felixweinberger
added a commit
that referenced
this pull request
Feb 10, 2026
Conformance CI now gates merges: unexpected failures block PRs, but known failures in the baseline are tolerated. Stale baseline entries (scenarios that start passing) also block, forcing cleanup. Current baseline: - tools_call: conformance runner bug (fix merged in PR #141, pending release) - auth/pre-registration: needs client handler (not yet in main either) Also pins conformance to 0.1.11. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
felixweinberger
added a commit
that referenced
this pull request
Feb 16, 2026
Add client-side conformance test for the auth/pre-registration scenario, which tests OAuth flows with pre-registered credentials (no dynamic client registration). - Add pre-registration scenario handler to everythingClient.ts - Bump @modelcontextprotocol/conformance to 0.1.14 (fixes tools_call race condition from PR #141, adds cross-app-access scenario) - Update baseline: remove tools_call (now fixed), remove auth/pre-registration (now implemented), add auth/cross-app-access-complete-flow (SEP-990, not yet implemented) Conformance results: 23/24 client scenarios pass (281 checks), 1 expected failure (auth/cross-app-access-complete-flow).
6 tasks
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.
Motivation and Context
The
Writing MCP Clientsin the README did not work correctly and I want to fix it.How Has This Been Tested?
I used
@modelcontextprotocol/server-puppeteerto check the operation at handBreaking Changes
No.
Types of changes
Checklist
Additional context
The type declaration for
client.callToolcan be found here.typescript-sdk/src/client/index.ts
Lines 404 to 406 in 87197fb
typescript-sdk/src/types.ts
Lines 773 to 779 in 87197fb
Following the current documentation would result in the following type error
I have corrected this diff.