project_members_remove
ManagementRemove Project Members
Remove members from a project (bulk). Their team membership and other projects are untouched.
IMPORTANT: call project_members_list first and confirm the exact list with the user before calling this tool.
Requires a project admin or team admin; other credentials get a permission error.
Args:
- project_id: required
- members: required — 1-32 user IDs or emails
- team_id: optional — required for OAuth sessions
- response_format: optional — 'json' (default) or 'markdown'
Returns: per-member outcome rows (removed | failed | skipped). Processes members one by one and reports a per-member outcome. If the response has status "partial", call the tool again with the "remaining" list to finish.
Don't use when: Removing someone from the whole team — use team_members_remove.
destructiveopen-world
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| team_id | string | — | Team ID. Required if user belongs to multiple teams. |
| project_id | string | ✓ | Project ID. Get it from projects_list. |
| members | array | ✓ | User IDs or emails to remove from the project (1-32). Team membership is untouched. |
| response_format | enum(json | markdown) | json | Output format: 'json' for structured data, 'markdown' for human-readable text. |