@lousy-agents/mcp 5.14.2 → 5.14.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.
@@ -27029,10 +27029,9 @@ function getFsSafePythonConfig() {
27029
27029
  };
27030
27030
  }
27031
27031
  function canFallbackFromPythonError(error) {
27032
+ const code = error instanceof Error && "code" in error ? error.code : undefined;
27032
27033
  return (getFsSafePythonConfig().mode !== "require" &&
27033
- error instanceof Error &&
27034
- "code" in error &&
27035
- error.code === "helper-unavailable");
27034
+ (code === "helper-unavailable" || code === "unsupported-platform"));
27036
27035
  }
27037
27036
 
27038
27037
  // EXTERNAL MODULE: external "node:child_process"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lousy-agents/mcp",
3
- "version": "5.14.2",
3
+ "version": "5.14.3",
4
4
  "description": "MCP server for lousy-agents - provides AI coding assistant tools via the Model Context Protocol",
5
5
  "type": "module",
6
6
  "repository": {