search_team_active_portfolios
Query active portfolios assigned to a specific team on the HH JIRA MCP Server. Retrieve and manage JIRA tasks and issues efficiently through integration with the MCP server.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| team | Yes |
Implementation Reference
- src/hh_jira_mcp_server/server.py:9-18 (handler)Handler function for 'search_team_active_portfolios' tool. Decorated with @mcp.tool() for registration. Searches Jira issues for active portfolios of the specified team using a JQL query constructed with helpers.@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)}"