For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Logo
Resources
Log inGet a demo
Get startedAPI reference
Get startedAPI reference
    • Overview
    • Quickstart
    • Model Context Protocol
  • Implementation guides
    • Tool Pack
    • Registered Users
    • MCP integration
    • Merge CLI
    • Link
    • Testing locally
  • Admin setup
    • User setup
    • Security rules
    • Authentication
    • Add OAuth credentials
  • Features
    • Magic Link
    • Remote MCP Server
    • Webhooks
    • Custom headers for MCP
  • Connectors
    • ActiveCampaign
    • Airtable
    • Amadeus
    • Amazon S3
    • Anaplan
    • Apollo
    • Articulate Reach 360
    • Asana
    • Aviationstack
    • BambooHR
    • Basecamp
    • bioRxiv
    • Bitbucket
    • Box
    • Calendly
    • Canva
    • ClickUp
    • ClinicalTrials.gov
    • Cloudflare
    • CMS Coverage
    • Confluence
    • Contentful
    • Databricks
    • Datadog
    • DocuSign
    • DoorDash
    • Dropbox
    • Duffel
    • Dynamics 365 Sales
    • Exa
    • Expensify
    • FactSet
    • Figma
    • Firecrawl
    • foursquare Foursquare
    • FreshBooks
    • Freshdesk
    • Freshservice
    • Front
    • Gamma
    • GitHub
    • GitLab
    • Gmail
    • Gong
    • Google BigQuery
    • Google Calendar
    • Google Docs
    • Google Drive
    • Google Maps
    • Google Meet
    • Google Sheets
    • Google Slides
    • Greenhouse
    • HiBob
    • HubSpot
    • Intercom
    • Jira
    • Jira Service Management
    • Klaviyo
    • Linear
    • LinkedIn
    • Make
    • Microsoft Teams
    • Miro
    • Monday.com
    • n8n
    • Notion
    • NPI Registry
    • OneDrive
    • OneNote
    • Oracle HCM
    • Outlook
    • PagerDuty
    • PayPal
    • Pipedrive
    • PubMed
    • Pylon
    • Quartr
    • QuickBooks Online
    • Ramp
    • Rootly
    • Salesforce.com logo A cloud computing company based in San Francisco, California, United States image/svg+xml Salesforce
    • SAP SuccessFactors
    • SendGrid
    • Sentry
    • ServiceNow
    • SharePoint
    • Shopify
    • Slack
    • Snowflake
    • Spotify
    • Square
    • Straker
    • Stripe
    • Teamwork.com
    • Trello
    • TripAdvisor
    • VisualPing
    • image/svg+xml SVG drawing This was produced by version 4.1 of GNU libplot, a free library for exporting 2-D vector graphics. Weather
    • Wikipedia
    • Workday
    • X
    • Yelp
    • image/svg+xml YouTube
    • golion-z-sourcefile-algaeZendesk
    • Zendesk Sell
    • Zoho CRM
    • Zoho Desk
    • Zoom
    • ZoomInfo
UnifiedAgent HandlerGateway
UnifiedAgent HandlerGateway
Resources
Log inGet a demo
On this page
  • Available Tools
Connectors

Jira

Connect your AI agents to Jira.
Was this page helpful?
Previous

Intercom

Next

Jira Service Management

Built with

Available Tools

add_comment

Add a comment to a Jira issue. Example: {‘issue_key’: ‘PROJ-123’, ‘body’: ‘This is a comment’}

get_comments

Get comments for a Jira issue

update_comment

Update a comment on a Jira issue

delete_comment

Delete a comment from a Jira issue

create_issue

Create a Jira issue.

get_issue

Get Jira issue details using the issue key

update_issue

Update a Jira issue.

delete_issue

Delete a Jira issue

link_issues

Link two Jira issues.

transition_issue

Transition a Jira issue to a new status. Provide either transition_id or transition_name. Example: {‘issue_key’: ‘PROJ-123’, ‘transition_name’: ‘In Progress’, ‘comment’: ‘Starting work’}

search_issues

Search Jira issues using JQL or structured filters.

get_issue_transitions

Get available transitions for a Jira issue

discover_issue_required_fields

Discover required fields for Jira issue creation. Always call this tool ahead of create_issue.

list_statuses

List all workflow statuses in Jira. READ-ONLY: Creating statuses via API is NOT supported - use Jira UI to add custom statuses like ‘In Review’, then use this to verify.

get_project_statuses

Get workflow statuses available for a specific project. Use this to verify if custom statuses like ‘In Review’ are configured before using transition_issue.

get_issue_attachments

Get all attachments from an issue. Returns list with attachment ID, filename, size, author, created date. Use attachment IDs with delete_attachment().

delete_attachment

Delete an attachment by ID. REQUIRED: attachmentId from get_issue_attachments(). Requires ‘Delete All Attachments’ or ‘Delete Own Attachments’ project permission.

add_attachment

Add an attachment to a Jira issue. REQUIRED: issueKey, filename, contentBase64 (base64-encoded file). Optional: contentType (MIME type). Returns attachment ID and metadata.

move_issues_between_projects

Move issues between projects.

get_move_task_progress

Check progress of bulk move operation. Requires task_id from move_issues_between_projects. Returns status: RUNNING, COMPLETE, or FAILED with progress percentage and result details.

get_projects

Search and filter Jira projects.

get_project

Get a specific Jira project by key or ID

get_project_issue_types

Get issue types for a specific project

get_project_components

Get all components for a Jira project.

get_project_versions

Get versions for a specific project

get_priorities

Get all available priorities. Returns list with ‘id’, ‘name’, ‘description’ fields. Use these values when setting priority in create_issue or update_issue. Format: {“name”: “High”} or {“id”: “3”}.

get_project_templates

Get template keys for project type.

create_project

Create Jira project.

update_project

Update a Jira project.

delete_project

Delete a Jira project.

move_issues_to_sprint

Move issues to sprint.

move_issues_to_backlog

Move issues to backlog. Max 50 issues. Removes from future/active sprints. Requires issue_keys. Use to unassign issues from sprints. Requires ‘Manage Sprints’ permission and valid license.

get_board_sprints

List sprints for board. Returns sprint IDs, names, states, dates. Filter by state: active, future, closed. Pagination supported. Use to find sprint IDs for move operations.

get_sprint

Get sprint details. Requires sprint_id. Returns state, dates, goal, board ID. Use to check sprint status before moving issues.

create_board

Create Jira board (scrum/kanban).

get_boards

List all Jira boards. Filter by type (scrum/kanban), name, or project. Pagination supported. Returns board IDs, names, types. Use to discover board IDs for sprint operations.

get_board

Get Jira board details. Requires board_id. Returns name, type, location, configuration. Use get_boards to find board IDs.

search_users

Search for Jira users. Requires at least one of: query (e.g., ‘john’), username, or account_id parameter to search for users.

get_user

Get a specific Jira user by account ID or username

get_current_user

Get the current authenticated user

get_user_assignee_suggestions

Get user assignee suggestions for an issue or project

get_user_groups

Get groups that a user belongs to