MCPMCP-Tools/Team/update_team_member

update_team_member

Writeteam:write

Edit a team member's weekly hours capacity, module permissions, or Slack link. Does NOT change their role (owner/admin/member — there is no way to change role through this action; it isn't editable in the product today). Pass only the fields you want to change. A Slack user id can only be linked to one member at a time — assigning it here unlinks it from whoever had it. Identify the member by their id (from list_team_members).

Parameter
memberIdstringerforderlich
The id of the team member to update (required).
weeklyHoursCapacitynumberoptional
Weekly hours capacity, 0–80.
permissionsobjectoptional
Per-module permission overrides ({ moduleKey: boolean }). Unspecified modules are set to false.
slackUserIdstringoptional
Slack member id to link for standup DMs. Pass an empty string to unlink.
Beispielanfrage
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "update_team_member",
    "arguments": {
      "memberId": "string"
    }
  }
}
Beispielantwort
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "content": [
      {
        "type": "text",
        "text": "..."
      }
    ]
  }
}

Die Antwortform dient nur zur Veranschaulichung — der tatsächliche Inhalt hängt vom Tool und Ihren Daten ab.