{
  "info": {
    "name": "Jira — mcp.ai",
    "description": "REST API for the Jira MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/jira",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "jira_add_attachment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/attachment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "attachment"
          ]
        },
        "description": "Uploads and attaches a file to a jira issue.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"issue_key\": \"\",\n  \"file_to_upload\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_add_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "comment"
          ]
        },
        "description": "Adds a comment using atlassian document format (adf) for rich text to an existing jira issue.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"comment\": \"\",\n  \"issue_id_or_key\": \"\",\n  \"visibility_type\": \"\",\n  \"visibility_value\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_add_watcher_to_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/watcher/to/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "watcher",
            "to",
            "issue"
          ]
        },
        "description": "Adds a user to an issue's watcher list by account id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account_id\": \"\",\n  \"issue_id_or_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_assign_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/assign/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "assign",
            "issue"
          ]
        },
        "description": "Assigns a jira issue to a user, default assignee, or unassigns; supports email/name lookup.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account_id\": \"\",\n  \"assignee_name\": \"\",\n  \"issue_id_or_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_bulk_create_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/bulk/create/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "bulk",
            "create",
            "issue"
          ]
        },
        "description": "Creates multiple jira issues (up to 50 per call) with full feature support including markdown, assignee resolution, and priority handling.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"issues\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_create_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "issue"
          ]
        },
        "description": "Creates a new jira issue (e.g., bug, task, story) in a specified project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"labels\": \"\",\n  \"summary\": \"\",\n  \"assignee\": \"\",\n  \"due_date\": \"\",\n  \"priority\": \"\",\n  \"reporter\": \"\",\n  \"versions\": \"\",\n  \"sprint_id\": 0,\n  \"components\": \"\",\n  \"issue_type\": \"\",\n  \"description\": \"\",\n  \"environment\": \"\",\n  \"project_key\": \"\",\n  \"fix_versions\": \"\",\n  \"assignee_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_create_issue_link",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/issue/link",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "issue",
            "link"
          ]
        },
        "description": "Links two jira issues using a specified link type with optional comment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"comment\": \"\",\n  \"link_type\": \"\",\n  \"inward_issue_key\": \"\",\n  \"outward_issue_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_create_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "project"
          ]
        },
        "description": "Creates a new jira project with required lead, template, and type configuration.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"url\": \"\",\n  \"name\": \"\",\n  \"avatar_id\": 0,\n  \"category_id\": 0,\n  \"description\": \"\",\n  \"assignee_type\": \"\",\n  \"lead_account_id\": \"\",\n  \"project_type_key\": \"\",\n  \"permission_scheme\": 0,\n  \"notification_scheme\": 0,\n  \"project_template_key\": \"\",\n  \"issue_security_scheme\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_create_sprint",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/sprint",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "sprint"
          ]
        },
        "description": "Creates a new sprint on a jira board with optional start/end dates and goal.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"goal\": \"\",\n  \"name\": \"\",\n  \"end_date\": \"\",\n  \"start_date\": \"\",\n  \"origin_board_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_create_version",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/version",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "version"
          ]
        },
        "description": "Creates a new version for releases or milestones in a jira project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"archived\": false,\n  \"released\": false,\n  \"projectId\": 0,\n  \"startDate\": \"\",\n  \"description\": \"\",\n  \"releaseDate\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_delete_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "comment"
          ]
        },
        "description": "Deletes a specific comment from a jira issue using its id and the issue's id/key; requires user permission to delete comments on the issue.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"issueIdOrKey\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_delete_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "issue"
          ]
        },
        "description": "Deletes a jira issue by its id or key.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"delete_subtasks\": false,\n  \"issue_id_or_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_delete_version",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/version",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "version"
          ]
        },
        "description": "Deletes a jira version and optionally reassigns its issues.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"version_id\": \"\",\n  \"move_fix_issues_to\": \"\",\n  \"move_affected_issues_to\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_delete_worklog",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/worklog",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "worklog"
          ]
        },
        "description": "Deletes a worklog from a jira issue with estimate adjustment options.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"worklog_id\": \"\",\n  \"increase_by\": \"\",\n  \"new_estimate\": \"\",\n  \"notify_users\": false,\n  \"adjust_estimate\": \"\",\n  \"issue_id_or_key\": \"\",\n  \"override_editable_flag\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_edit_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/edit/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "edit",
            "issue"
          ]
        },
        "description": "Updates an existing jira issue with field values and operations. supports direct field parameters (summary, description, assignee, priority, etc.) that are merged with the fields parameter. direct par",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": {},\n  \"labels\": \"\",\n  \"update\": {},\n  \"summary\": \"\",\n  \"assignee\": \"\",\n  \"due_date\": \"\",\n  \"description\": \"\",\n  \"notify_users\": false,\n  \"return_issue\": false,\n  \"issue_id_or_key\": \"\",\n  \"sprint_id_or_name\": \"\",\n  \"priority_id_or_name\": \"\",\n  \"override_editable_flag\": false,\n  \"override_screen_security\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_find_users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/find/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "find",
            "users"
          ]
        },
        "description": "Searches for jira users by email, display name, or username to find account ids; essential for assigning issues, adding watchers, and other user-related operations.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\",\n  \"start_at\": 0,\n  \"username\": \"\",\n  \"account_id\": \"\",\n  \"max_results\": 0,\n  \"include_active\": false,\n  \"include_inactive\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_get_all_issue_type_schemes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/issue/type/schemes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "issue",
            "type",
            "schemes"
          ]
        },
        "description": "Retrieves all jira issue type schemes with optional filtering and pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"start_at\": 0,\n  \"max_results\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_get_all_projects",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/projects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "projects"
          ]
        },
        "description": "Retrieves all visible projects using the modern paginated jira api with server-side filtering and pagination support.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"query\": \"\",\n  \"action\": \"\",\n  \"expand\": \"\",\n  \"status\": \"\",\n  \"orderBy\": \"\",\n  \"startAt\": 0,\n  \"categoryId\": 0,\n  \"maxResults\": 0,\n  \"properties\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_get_all_statuses",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/statuses",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "statuses"
          ]
        },
        "description": "Retrieves all available issue statuses from jira with details.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_get_all_users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "users"
          ]
        },
        "description": "Retrieves all users from the jira instance including active, inactive, and other user states with pagination support.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"start_at\": 0,\n  \"max_results\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_get_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "comment"
          ]
        },
        "description": "Retrieves a specific comment by id from a jira issue with optional expansions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"expand\": \"\",\n  \"comment_id\": \"\",\n  \"issue_id_or_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_get_current_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/current/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "current",
            "user"
          ]
        },
        "description": "Retrieves detailed information about the currently authenticated jira user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"expand\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_get_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "issue"
          ]
        },
        "description": "Retrieves a jira issue by id or key with customizable fields and expansions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"expand\": \"\",\n  \"fields\": \"\",\n  \"properties\": \"\",\n  \"fields_by_keys\": false,\n  \"update_history\": false,\n  \"issue_id_or_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_get_issue_link_types",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/issue/link/types",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "issue",
            "link",
            "types"
          ]
        },
        "description": "Retrieves all configured issue link types from jira.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_get_issue_property",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/issue/property",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "issue",
            "property"
          ]
        },
        "description": "Retrieves a custom property from a jira issue by key.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"property_key\": \"\",\n  \"issue_id_or_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_get_issue_resolutions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/issue/resolutions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "issue",
            "resolutions"
          ]
        },
        "description": "Retrieves all available issue resolution types from jira.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_get_issue_type_scheme",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/issue/type/scheme",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "issue",
            "type",
            "scheme"
          ]
        },
        "description": "Gets a jira issue type scheme by id with all associated issue types.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"issue_type_scheme_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_get_issue_types",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/issue/types",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "issue",
            "types"
          ]
        },
        "description": "Retrieves all jira issue types available to the user using the modern api v3 endpoint; results vary based on 'administer jira' global or 'browse projects' project permissions.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_get_issue_watchers",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/issue/watchers",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "issue",
            "watchers"
          ]
        },
        "description": "Retrieves users watching a jira issue for update notifications.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"start_at\": 0,\n  \"max_results\": 0,\n  \"issue_id_or_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_get_issue_worklogs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/issue/worklogs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "issue",
            "worklogs"
          ]
        },
        "description": "Retrieves worklogs for a jira issue with user permission checks.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"start_at\": 0,\n  \"max_results\": 0,\n  \"started_after\": 0,\n  \"started_before\": 0,\n  \"issue_id_or_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_get_project_versions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project/versions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project",
            "versions"
          ]
        },
        "description": "Retrieves all versions for a jira project with optional expansion.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"expand\": \"\",\n  \"project_id_or_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_get_remote_issue_links",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/remote/issue/links",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "remote",
            "issue",
            "links"
          ]
        },
        "description": "Retrieves links from a jira issue to external resources.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"global_id\": \"\",\n  \"issue_id_or_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_get_transitions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/transitions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "transitions"
          ]
        },
        "description": "Retrieves available workflow transitions for a jira issue.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"expand\": \"\",\n  \"transition_id\": \"\",\n  \"issue_id_or_key\": \"\",\n  \"skip_remote_only_condition\": false,\n  \"sort_by_ops_bar_and_status\": false,\n  \"include_unavailable_transitions\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_get_votes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/votes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "votes"
          ]
        },
        "description": "Fetches voting details for a jira issue; requires voting to be enabled in jira's general settings.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"issue_id_or_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_get_worklog",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/worklog",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "worklog"
          ]
        },
        "description": "Retrieves worklogs for a specified jira issue.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"expand\": \"\",\n  \"start_at\": 0,\n  \"max_results\": 0,\n  \"started_after\": 0,\n  \"started_before\": 0,\n  \"issue_id_or_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_list_boards",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/boards",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "boards"
          ]
        },
        "description": "Retrieves paginated jira boards with filtering and sorting options.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"type\": \"\",\n  \"orderBy\": \"\",\n  \"start_at\": 0,\n  \"max_results\": 0,\n  \"includePrivate\": false,\n  \"projectKeyOrId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_list_issue_comments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/issue/comments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "issue",
            "comments"
          ]
        },
        "description": "Retrieves paginated comments from a jira issue with optional ordering.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"expand\": \"\",\n  \"order_by\": \"\",\n  \"start_at\": 0,\n  \"max_results\": 0,\n  \"issue_id_or_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_list_sprints",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/sprints",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "sprints"
          ]
        },
        "description": "Retrieves paginated sprints from a jira board with optional state filtering.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"state\": \"\",\n  \"board_id\": 0,\n  \"start_at\": 0,\n  \"max_results\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_move_issue_to_sprint",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/move/issue/to/sprint",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "move",
            "issue",
            "to",
            "sprint"
          ]
        },
        "description": "Moves one or more jira issues to a specified active sprint.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"issues\": \"\",\n  \"sprint_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_remove_watcher_from_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/watcher/from/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "watcher",
            "from",
            "issue"
          ]
        },
        "description": "Removes a user from an issue's watcher list by account id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account_id\": \"\",\n  \"issue_id_or_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_search_for_issues_using_jql_get",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/for/issues/using/jql/get",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "for",
            "issues",
            "using",
            "jql",
            "get"
          ]
        },
        "description": "Searches for jira issues using jql with pagination and field selection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"jql\": \"\",\n  \"expand\": \"\",\n  \"fields\": \"\",\n  \"start_at\": 0,\n  \"properties\": \"\",\n  \"max_results\": 0,\n  \"fields_by_keys\": false,\n  \"validate_query\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_search_for_issues_using_jql_post",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/for/issues/using/jql/post",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "for",
            "issues",
            "using",
            "jql",
            "post"
          ]
        },
        "description": "Searches for jira issues using jql via post request for complex queries; ideal for lengthy jql queries that might exceed url character limits",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"jql\": \"\",\n  \"expand\": \"\",\n  \"fields\": \"\",\n  \"start_at\": 0,\n  \"properties\": \"\",\n  \"max_results\": 0,\n  \"fields_by_keys\": false,\n  \"validate_query\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_search_issues",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/issues",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "issues"
          ]
        },
        "description": "Advanced jira issue search supporting structured filters and raw jql.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"jql\": \"\",\n  \"labels\": \"\",\n  \"assignee\": \"\",\n  \"start_at\": 0,\n  \"max_results\": 0,\n  \"project_key\": \"\",\n  \"text_search\": \"\",\n  \"created_after\": \"\",\n  \"updated_after\": \"\",\n  \"created_before\": \"\",\n  \"updated_before\": \"\",\n  \"sprint_id_or_name\": \"\",\n  \"status_id_or_name\": \"\",\n  \"priority_id_or_name\": \"\",\n  \"issue_type_id_or_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_send_notification_for_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/send/notification/for/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "send",
            "notification",
            "for",
            "issue"
          ]
        },
        "description": "Sends a customized email notification for a jira issue.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"to\": {},\n  \"subject\": \"\",\n  \"restrict\": {},\n  \"html_body\": \"\",\n  \"text_body\": \"\",\n  \"issue_id_or_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_transition_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/transition/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "transition",
            "issue"
          ]
        },
        "description": "Transitions a jira issue to a different workflow state, with support for transition name lookup and user assignment by email.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"comment\": \"\",\n  \"assignee\": \"\",\n  \"resolution\": \"\",\n  \"assignee_name\": \"\",\n  \"issue_id_or_key\": \"\",\n  \"transition_id_or_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "jira_update_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "comment"
          ]
        },
        "description": "Updates text content or visibility of an existing jira comment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"comment_id\": \"\",\n  \"comment_text\": \"\",\n  \"notify_users\": false,\n  \"issue_id_or_key\": \"\",\n  \"visibility_type\": \"\",\n  \"visibility_value\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}