From 6bfa975eb251bb48513d96b002bd712bbb84086b Mon Sep 17 00:00:00 2001 From: SToneX Date: Tue, 11 Mar 2025 15:34:30 +0800 Subject: [PATCH] docs: Update README for client method usage --- README.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fe4caa3f..449dafa4 100644 --- a/README.md +++ b/README.md @@ -459,15 +459,20 @@ await client.connect(transport); const prompts = await client.listPrompts(); // Get a prompt -const prompt = await client.getPrompt("example-prompt", { - arg1: "value" +const prompt = await client.getPrompt({ + name: "example-prompt", + arguments: { + arg1: "value" + } }); // List resources const resources = await client.listResources(); // Read a resource -const resource = await client.readResource("file:///example.txt"); +const resource = await client.readResource({ + uri: "file:///example.txt" +}); // Call a tool const result = await client.callTool({