Get Create Fields
jira_get_create_fieldsRetrieve all fields (required and optional) for creating a Jira issue of a specific type in a project. Use this to get field IDs, names, and whether they are required before submitting an issue.
Instructions
Get fields available for creating an issue of a specific type.
Returns all fields (required and optional) for the given project and issue type, including field names, IDs, whether they're required, and their schema. Use jira_get_field_options when a returned field needs its allowed values.
Args: ctx: The FastMCP context. project_key: The project key. issue_type_id: The issue type ID.
Returns: JSON string with list of field metadata (field_id, name, required, schema).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_key | Yes | Jira project key (e.g., 'PROJ', 'JTEST') | |
| issue_type_id | Yes | The issue type ID (from get_project_issue_types). Example: '10002' for Task. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |