You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/mcp-server/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -274,8 +274,8 @@ Each tool exposes MCP [tool annotations](https://modelcontextprotocol.io/specifi
274
274
### Organizations: Teams (2)
275
275
| Tool | Title | Hint | Description |
276
276
|---|---|---|---|
277
-
|`get_org_teams`| List All Org Teams | Read | List all teams in an organization; requires org admin access |
278
-
|`get_my_teams`| List My Teams | Read | List teams the authenticated user belongs to |
277
+
|`get_org_teams`| List All Org Teams | Read | List all teams in an organization; requires org admin access; supports `take`/`skip` pagination (`take` max 250)|
278
+
|`get_my_teams`| List My Teams | Read | List teams the authenticated user belongs to; supports `take`/`skip` pagination (`take` max 250)|
Copy file name to clipboardExpand all lines: apps/mcp-server/src/register-tools.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -647,7 +647,7 @@ export function registerTools(server: McpServer): void {
647
647
{
648
648
title: "List All Org Teams",
649
649
description:
650
-
"List all teams in an organization. Requires ORG_ADMIN role. Use get_me to obtain your organizationId. Returns team IDs, names, and slugs needed by other team-scoped tools. If this fails with 403, use get_my_teams instead.",
650
+
"List all teams in an organization. Supports take/skip pagination (take max 250). Requires ORG_ADMIN role. Use get_me to obtain your organizationId. Returns team IDs, names, and slugs needed by other team-scoped tools. If this fails with 403, use get_my_teams instead.",
651
651
inputSchema: getOrgTeamsSchema,
652
652
annotations: READ_ONLY,
653
653
},
@@ -658,7 +658,7 @@ export function registerTools(server: McpServer): void {
658
658
{
659
659
title: "List My Teams",
660
660
description:
661
-
"List teams the authenticated user belongs to. Works for any org member (org admins see all teams). Use get_me to obtain your organizationId. Returns team IDs, names, and slugs needed by other team-scoped tools.",
661
+
"List teams the authenticated user belongs to. Supports take/skip pagination (take max 250). Works for any org member (org admins see all teams). Use get_me to obtain your organizationId. Returns team IDs, names, and slugs needed by other team-scoped tools.",
0 commit comments