Back

Atlassian

Jira and Confluence — issues, pages, comments, and search

22 capabilitiesView Source ↗

Capabilities

atlassian-mcp__jira_search_users

Search for Jira users by name, username, or email address. Returns matching user accounts with display names and account IDs.

Parameters

querystring/ Search query — matches against name, username, or email
max_resultsnumber/ Maximum number of results to return (default 10)
atlassian-mcp__jira_search

Search Jira issues using JQL (Jira Query Language). Returns matching issues with key fields. Supports pagination via next_page_token.

Parameters

jqlstring/ JQL query string (e.g. 'project = PROJ AND status = Open')
max_resultsnumber/ Maximum number of results per page (default 50)
next_page_tokenstring/ Pagination token from a previous search response
atlassian-mcp__jira_get_issue

Get detailed information about a specific Jira issue by its key (e.g. PROJ-123). Returns summary, status, priority, assignee, reporter, description, labels, dates, comments count, and attachments.

Parameters

issue_keystring/ The issue key (e.g. PROJ-123)
atlassian-mcp__jira_list_fields

List all available Jira fields (both system and custom). Useful for discovering field IDs needed for creating or updating issues.

atlassian-mcp__jira_create_issue

Create a new Jira issue in the specified project. Returns the created issue key and URL.

Parameters

summarystring/ Issue summary / title
issue_typestring/ Issue type name (default 'Task'). Common values: Task, Bug, Story, Epic
descriptionstring/ Issue description (plain text, will be converted to ADF)
project_keystring/ Project key (e.g. PROJ)
atlassian-mcp__jira_update_issue

Update an existing Jira issue. You can change the summary, description, and/or set arbitrary fields via additional_fields.

Parameters

summarystring/ New summary / title
issue_keystring/ The issue key (e.g. PROJ-123)
descriptionstring/ New description (plain text, will be converted to ADF)
additional_fieldsobject/ Additional fields to set, as a JSON object of field ID to value (e.g. {"priority": {"name": "High"}})
atlassian-mcp__jira_add_comment

Add a comment to a Jira issue.

Parameters

commentstring/ Comment text (plain text, will be converted to ADF)
issue_keystring/ The issue key (e.g. PROJ-123)
atlassian-mcp__jira_edit_comment

Edit an existing comment on a Jira issue.

Parameters

commentstring/ New comment text (plain text, will be converted to ADF)
issue_keystring/ The issue key (e.g. PROJ-123)
comment_idstring/ The ID of the comment to edit
atlassian-mcp__jira_delete_comment

Delete a comment from a Jira issue.

Parameters

issue_keystring/ The issue key (e.g. PROJ-123)
comment_idstring/ The ID of the comment to delete
atlassian-mcp__jira_get_comments

Get all comments on a Jira issue.

Parameters

issue_keystring/ The issue key (e.g. PROJ-123)
atlassian-mcp__jira_get_transitions

Get the available workflow transitions for a Jira issue. Use the returned transition IDs with jira_transition_issue to move an issue through its workflow.

Parameters

issue_keystring/ The issue key (e.g. PROJ-123)
atlassian-mcp__jira_transition_issue

Transition a Jira issue to a new workflow status. Use jira_get_transitions first to find valid transition IDs.

Parameters

issue_keystring/ The issue key (e.g. PROJ-123)
transition_idstring/ The transition ID (from jira_get_transitions)
atlassian-mcp__jira_get_attachment

Get metadata for a Jira attachment by its ID. Returns filename, size, MIME type, and content URL.

Parameters

attachment_idstring/ The attachment ID
atlassian-mcp__confluence_list_pages

List pages in a Confluence space. Returns an array of pages with id, title, version, and link.

Parameters

limitnumber/ Maximum number of pages to return (default 25).
space_keystring/ The key of the Confluence space (e.g. 'ENG').
atlassian-mcp__confluence_get_page

Get a single Confluence page by ID, including its XHTML body content and version info.

Parameters

page_idstring/ The ID of the page to retrieve.
atlassian-mcp__confluence_create_page

Create a new page in Confluence. Content must be in XHTML storage format.

Parameters

titlestring/ Title of the new page.
contentstring/ Page body in Confluence XHTML storage format (e.g. '<p>Hello</p>').
parent_idstring/ Optional parent page ID to nest this page under.
space_keystring/ The key of the space to create the page in.
atlassian-mcp__confluence_edit_page

Update an existing Confluence page. Content must be in XHTML storage format. If version is not provided the current version is fetched and auto-incremented.

Parameters

titlestring/ New title for the page.
contentstring/ New body in XHTML storage format.
page_idstring/ The ID of the page to update.
versionnumber/ Version number for the update. If omitted the current version is auto-incremented.
atlassian-mcp__confluence_delete_page

Delete a Confluence page by ID.

Parameters

page_idstring/ The ID of the page to delete.
atlassian-mcp__confluence_search

Search Confluence content using CQL (Confluence Query Language). Returns matching pages/content with id, title, version, and link.

Parameters

cqlstring/ CQL query string (e.g. 'type=page AND space=ENG AND title~"onboarding"').
limitnumber/ Maximum number of results to return (default 25).
atlassian-mcp__confluence_get_comments

Get all comments on a Confluence page, including their body content and version info.

Parameters

page_idstring/ The ID of the page whose comments to retrieve.
atlassian-mcp__confluence_add_comment

Add a comment to a Confluence page. Optionally reply to an existing comment by providing parent_comment_id.

Parameters

bodystring/ Comment text (plain text; will be wrapped in <p> tags automatically).
page_idstring/ The ID of the page to comment on.
parent_comment_idstring/ Optional ID of an existing comment to reply to.
atlassian-mcp__confluence_get_attachment

Get metadata for a specific attachment on a Confluence page by filename.

Parameters

page_idstring/ The ID of the page the attachment belongs to.
filenamestring/ Exact filename of the attachment.

Connect

Add this to your MCP client config to access all integrations through the gateway.

{
  "mcpServers": {
    "datatorag": {
      "url": "https://datatorag.com/mcp"
    }
  }
}