Deploy MCP Server
Project Management OAuth 2.0

Jira REST API

Agile project management and issue tracking REST API

Jira REST API enables developers to programmatically manage projects, issues, workflows, and agile boards. Used by development teams to integrate bug tracking, sprint planning, and project management into their tools and automate workflow processes. The API provides comprehensive access to Jira's issue tracking capabilities, custom fields, permissions, and reporting features.

Base URL https://your-domain.atlassian.net/rest/api/3

API Endpoints

MethodEndpointDescription
GET/issue/{issueIdOrKey}Get details of a specific issue by ID or key
POST/issueCreate a new issue in a project
PUT/issue/{issueIdOrKey}Update an existing issue's fields
DELETE/issue/{issueIdOrKey}Delete an issue permanently
GET/searchSearch for issues using JQL (Jira Query Language)
POST/issue/{issueIdOrKey}/commentAdd a comment to an issue
GET/projectList all projects accessible to the user
GET/project/{projectIdOrKey}Get details of a specific project
POST/issue/{issueIdOrKey}/transitionsTransition an issue to a different status
GET/issue/{issueIdOrKey}/transitionsGet available transitions for an issue
GET/user/searchSearch for users by query string
POST/issue/{issueIdOrKey}/assigneeAssign an issue to a user
GET/boardList all agile boards
GET/board/{boardId}/sprintGet all sprints for an agile board
POST/issue/{issueIdOrKey}/attachmentsAdd one or more attachments to an issue

Code Examples

curl -X GET \
  'https://your-domain.atlassian.net/rest/api/3/issue/PROJ-123' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
  -H 'Accept: application/json'

Connect Jira to AI

Deploy a Jira MCP server on IOX Cloud and connect it to Claude, ChatGPT, Cursor, or any AI client. Your AI assistant gets direct access to Jira through these tools:

create_jira_issue Create a new Jira issue with specified project, type, summary, and description
search_jira_issues Search for Jira issues using JQL queries and return matching results
update_issue_status Transition a Jira issue to a different workflow status
add_issue_comment Add a comment to an existing Jira issue
get_sprint_issues Retrieve all issues in a specific sprint for agile planning

Deploy in 60 seconds

Describe what you need, AI generates the code, and IOX deploys it globally.

Deploy Jira MCP Server →

Related APIs