jira_list_project_members
Retrieve all members of a specific Jira project by providing the project key, Jira host URL, email, and API token for authentication.
Instructions
Lists all members of a specific Jira project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiToken | No | API token for Jira authentication | |
No | Email address associated with the Jira account | ||
jiraHost | No | The Jira host URL (e.g., 'your-domain.atlassian.net') | |
projectKey | Yes | The Jira project key (e.g., 'PROJECT') |
Input Schema (JSON Schema)
{
"properties": {
"apiToken": {
"default": "",
"description": "API token for Jira authentication",
"type": "string"
},
"email": {
"default": "",
"description": "Email address associated with the Jira account",
"type": "string"
},
"jiraHost": {
"default": "",
"description": "The Jira host URL (e.g., 'your-domain.atlassian.net')",
"type": "string"
},
"projectKey": {
"description": "The Jira project key (e.g., 'PROJECT')",
"type": "string"
}
},
"required": [
"projectKey"
],
"type": "object"
}