Capabilities
atlassian-mcp__jira_search_usersSearch 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 emailmax_resultsnumber/ Maximum number of results to return (default 10)atlassian-mcp__jira_searchSearch 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 responseatlassian-mcp__jira_get_issueGet 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_fieldsList all available Jira fields (both system and custom). Useful for discovering field IDs needed for creating or updating issues.
atlassian-mcp__jira_create_issueCreate a new Jira issue in the specified project. Returns the created issue key and URL.
Parameters
summarystring/ Issue summary / titleissue_typestring/ Issue type name (default 'Task'). Common values: Task, Bug, Story, Epicdescriptionstring/ Issue description (plain text, will be converted to ADF)project_keystring/ Project key (e.g. PROJ)atlassian-mcp__jira_update_issueUpdate an existing Jira issue. You can change the summary, description, and/or set arbitrary fields via additional_fields.
Parameters
summarystring/ New summary / titleissue_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_commentAdd 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_commentEdit 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 editatlassian-mcp__jira_delete_commentDelete a comment from a Jira issue.
Parameters
issue_keystring/ The issue key (e.g. PROJ-123)comment_idstring/ The ID of the comment to deleteatlassian-mcp__jira_get_commentsGet all comments on a Jira issue.
Parameters
issue_keystring/ The issue key (e.g. PROJ-123)atlassian-mcp__jira_get_transitionsGet 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_issueTransition 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_attachmentGet metadata for a Jira attachment by its ID. Returns filename, size, MIME type, and content URL.
Parameters
attachment_idstring/ The attachment IDatlassian-mcp__confluence_list_pagesList 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_pageGet 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_pageCreate 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_pageUpdate 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_pageDelete a Confluence page by ID.
Parameters
page_idstring/ The ID of the page to delete.atlassian-mcp__confluence_searchSearch 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_commentsGet 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_commentAdd 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_attachmentGet 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"
}
}
}