Appearance
Teams
Groups wired into permissions.
8 tools — 3 read, 5 write.
| Tool | What it does | |
|---|---|---|
add_team_member | write | Add a user to a team as owner or member. |
create_team | write | Create a team — an org-scoped, reusable group of people. |
delete_team | write | Delete a team. |
list_shareable_teams | read | List all teams in the org so any member can pick one as a share subject. |
list_team_members | read | List a team's members (owners and members). |
list_teams | read | List teams. |
remove_team_member | write | Remove a user from a team. |
rename_team | write | Rename a team or update its description. |
Calling these
Over MCP, find one with search_tools, then run it with execute_tool. Over REST, POST /api/capabilities/<tool> with the arguments as the JSON body. Either way, fetch the input schema for the tool you're about to call rather than guessing — get_tool_schema over MCP, or GET /api/capabilities?name=<tool> over REST.
See How the API works for auth, errors and the shared envelope.