@cronicorn/mcp-server 1.4.3 → 1.4.4

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/dist/index.js CHANGED
@@ -4719,6 +4719,9 @@ function createHttpApiClient(config) {
4719
4719
  `API Error (${response.status}): ${errorText}`
4720
4720
  );
4721
4721
  }
4722
+ if (response.status === 204) {
4723
+ return /* @__PURE__ */ Object.create(null);
4724
+ }
4722
4725
  return response.json();
4723
4726
  }
4724
4727
  };