Skip to main content
Glama

jira_get_assigned_issues

Use this tool to retrieve all JIRA issues currently assigned to you, enabling efficient task management directly within your development environment.

Instructions

Retrieves all JIRA issues assigned to the current user

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Core tool execution logic: retrieves assigned issues via use case, formats output with IssuesListFormatter
    /** * Execute the handler logic * Retrieves issues assigned to the current user and formats them */ protected async execute(): Promise<string> { try { this.logger.info("Getting issues assigned to current user"); // Get assigned issues using use case const assignedIssues = await this.getAssignedIssuesUseCase.execute(); // Format the issues using the formatter return this.formatter.format(assignedIssues); } catch (error) { this.logger.error(`Failed to get assigned issues: ${error}`); throw this.enhanceError(error); } }
  • Tool registration configuration defining name, description, input schema (empty), and handler binding
    name: "jira_get_assigned_issues", description: "Retrieves all JIRA issues assigned to the current user", params: {}, handler: tools.jira_get_assigned_issues.handle.bind(tools.jira_get_assigned_issues), },
  • ToolHandler object creation wrapping the GetAssignedIssuesHandler instance
    jira_get_assigned_issues: { handle: async (args: unknown) => getAssignedIssuesHandler.handle(args), },
  • Instantiation of GetAssignedIssuesHandler with use case dependency
    const getAssignedIssuesHandler = new GetAssignedIssuesHandler( dependencies.getAssignedIssuesUseCase, );
  • Type definition for the tool handler in JiraTools interface
    jira_get_assigned_issues: ToolHandler;

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/Dsazz/mcp-jira'

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