wolfpack-mcp 1.0.22 → 1.0.23
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/client.js +2 -1
- package/package.json +1 -1
package/dist/client.js
CHANGED
|
@@ -67,7 +67,8 @@ export class WolfpackClient {
|
|
|
67
67
|
* List all teams the authenticated user is a member of.
|
|
68
68
|
*/
|
|
69
69
|
async listTeams() {
|
|
70
|
-
|
|
70
|
+
const response = await this.api.get('/teams');
|
|
71
|
+
return response.teams;
|
|
71
72
|
}
|
|
72
73
|
// Helper to fetch all pages of a paginated endpoint
|
|
73
74
|
async fetchAllPages(endpoint, baseParams) {
|