@mtaap/mcp 0.2.10 → 0.2.11

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
@@ -1056,10 +1056,11 @@ var MCPApiClient = class {
1056
1056
  /**
1057
1057
  * List accessible projects
1058
1058
  */
1059
- async listProjects(workspaceType = "ALL") {
1059
+ async listProjects(workspaceType) {
1060
+ const type = workspaceType || "ALL";
1060
1061
  return this.request(
1061
1062
  "GET",
1062
- `/api/mcp/projects?workspaceType=${encodeURIComponent(workspaceType)}`
1063
+ `/api/mcp/projects?workspaceType=${encodeURIComponent(type)}`
1063
1064
  );
1064
1065
  }
1065
1066
  /**