Skip to main content
Humm searches your Jira issues, reads project structures, and pulls comments. Ask which bugs were filed this week, what’s blocking a release, or how many open issues a project has.

Tools

ToolDescription
JIRA_SEARCH_ISSUES_BY_JQLSearch issues using JQL queries with pagination
JIRA_GET_ISSUEGet detailed information about a specific issue
JIRA_GET_ISSUE_COMMENTSGet comments on a specific issue
JIRA_LIST_PROJECTSList accessible projects
JIRA_LIST_FIELDSList all fields including custom fields
JIRA_GET_PROJECT_ISSUE_TYPESGet issue types available in a project
JIRA_SEARCH_COMMENTSSearch comments across issues by keyword or author
JIRA_FIND_USERSSearch for users by name or email

JQL Query Examples

Humm uses JIRA Query Language (JQL) to search issues. Here are common patterns:
# Recent bugs in a project
project = PROJ AND issuetype = Bug AND created >= -7d

# Open high priority issues
status = Open AND priority = High ORDER BY created DESC

# My assigned tasks
assignee = currentUser() AND status NOT IN (Done, Closed)

# Unassigned issues
assignee IS EMPTY AND status = Open

Project Access Control

When connecting Jira, you can restrict which projects Humm can access. This is useful for:
  • Limiting access to sensitive projects
  • Scoping queries to relevant teams
  • Ensuring data governance compliance
All searches are automatically scoped to allowed projects. If no project filter is specified in a query, results are limited to configured projects.

Authentication

OAuth

Connect securely via Atlassian OAuth. Authorize Humm to access your Jira instance.