Skip to main content
Glama
alexeydubinin

HH JIRA MCP Server

search_team_active_portfolios

Find active portfolios for a specific team in JIRA to track ongoing projects and monitor team workload.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
teamYes

Implementation Reference

  • The handler function decorated with @mcp.tool() that implements the search_team_active_portfolios tool. It queries Jira for active portfolios in the specified team and returns JSON results.
    @mcp.tool()
    def search_team_active_portfolios(team: str) -> str:
        try:
            issues = get_jira().search_issues(jql_str=f'project = "PORTFOLIO" and "Delivery Team" = "{team}"' + get_search_filter(),
                                                  maxResults=50,
                                                  json_result=True,
                                                  fields="summary,description,duedate,customfield_11212")
            return json.dumps(issues, indent=4)
        except Exception as e:
            return f"Error: {str(e)}"

Tool Definition Quality

Score is being calculated. Check back soon.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/alexeydubinin/hh-jira-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server