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.
Files changed (3) hide show
  1. package/README.md +2 -2
  2. package/jsr.json +1 -1
  3. 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
@@ -3,5 +3,5 @@
3
3
  "include": ["src/FastMCP.ts", "src/bin/fastmcp.ts"],
4
4
  "license": "MIT",
5
5
  "name": "@punkpeye/fastmcp",
6
- "version": "2.1.2"
6
+ "version": "2.1.3"
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fastmcp",
3
- "version": "2.1.2",
3
+ "version": "2.1.3",
4
4
  "main": "dist/FastMCP.js",
5
5
  "scripts": {
6
6
  "build": "tsup",