fastmcp 2.1.2 → 2.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/jsr.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -587,10 +587,10 @@ server.addTool({
|
|
|
587
587
|
|
|
588
588
|
// or...
|
|
589
589
|
// execute: async (args) => {
|
|
590
|
-
// const imgContent = imageContent({
|
|
590
|
+
// const imgContent = await imageContent({
|
|
591
591
|
// url: "https://example.com/image.png",
|
|
592
592
|
// });
|
|
593
|
-
// const audContent = audioContent({
|
|
593
|
+
// const audContent = await audioContent({
|
|
594
594
|
// url: "https://example.com/audio.mp3",
|
|
595
595
|
// });
|
|
596
596
|
// return {
|
package/jsr.json
CHANGED