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.
Files changed (2) hide show
  1. package/dist/client.js +2 -1
  2. 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
- return this.api.get('/teams');
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) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wolfpack-mcp",
3
- "version": "1.0.22",
3
+ "version": "1.0.23",
4
4
  "description": "MCP server for Wolfpack AI-enhanced software delivery tools",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",