Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md about client.callTool #141

Conversation

funwarioisii
Copy link
Contributor

@funwarioisii funwarioisii commented Jan 27, 2025

Motivation and Context

The Writing MCP Clients in the README did not work correctly and I want to fix it.

How Has This Been Tested?

I used @modelcontextprotocol/server-puppeteer to check the operation at hand

const transport = new StdioClientTransport({
	command: "npx",
	args: ["-y", "@modelcontextprotocol/server-puppeteer"],
});

const client = new Client(
	{
		name: "example-client",
		version: "1.0.0",
	},
	{
		capabilities: {
			prompts: {},
			resources: {},
			tools: {},
		},
	},
);

await client.connect(transport);

const result = await client.callTool({
  name: "puppeteer_navigate",
  arguments: {
		url: "https://google.com",
	},
});
console.dir(result, { depth: null });

await client.close();

Breaking Changes

No.

Types of changes

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to change)
  • Documentation update

Checklist

  • I have read the MCP Documentation
  • My code follows the repository's style guidelines
  • New and existing tests pass locally
  • I have added appropriate error handling
  • I have added or updated documentation as needed

Additional context

The type declaration for client.callTool can be found here.

async callTool(
params: CallToolRequest["params"],
resultSchema:

typescript-sdk/src/types.ts

Lines 773 to 779 in 87197fb

export const CallToolRequestSchema = RequestSchema.extend({
method: z.literal("tools/call"),
params: BaseRequestParamsSchema.extend({
name: z.string(),
arguments: z.optional(z.record(z.unknown())),
}),
});

Following the current documentation would result in the following type error

error TS2345: Argument of type 'string' is not assignable to parameter of type '{ [x: string]: unknown; name: string; _meta?: { [x: string]: unknown; progressToken?: string | number | undefined; } | undefined; arguments?: { [x: string]: unknown; } | undefined; }'

I have corrected this diff.

Copy link
Member

@jspahrsummers jspahrsummers left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you!

@jspahrsummers jspahrsummers merged commit 13c3eea into modelcontextprotocol:main Jan 27, 2025
MediaInfluences pushed a commit to MediaInfluences/typescript-sdk that referenced this pull request Apr 3, 2025
…s-client-call-tool

Update README.md about `client.callTool`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants