project_members_list
ManagementcatalogList Project Members
Not in the default tool list
This tool lives in the tool catalog. Discover it with scenario_tools_search (or enumerate everything with scenario_tools_list) and run it via scenario_tool_execute_read. To list every tool directly, connect with ?toolsets=full.
List a project's members with their project roles.
Args:
- project_id: required — project to list members for
- team_id: optional — required for OAuth sessions
- response_format: optional — 'json' (default) or 'markdown'
Returns: members ({id, email, role}). Standard roles are 'admin' (Owner), 'editor' (Contributor), 'reader' (Viewer); custom scope-string roles pass through as-is. API keys are separate from members — use api_keys_list / api_key_get / api_key_update / api_key_delete (project scope). Keys are created in the Scenario portal.
Don't use when: You need org-level membership — use team_members_list.
read-onlyidempotentopen-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. |
| response_format | enum(json | markdown) | json | Output format: 'json' for structured data, 'markdown' for human-readable text. |