UNPKG

@aashari/mcp-server-atlassian-jira

Version:

Node.js/TypeScript MCP server for Atlassian Jira. Equips AI systems (LLMs) with tools to list/get projects, search/get issues (using JQL/ID), and view dev info (commits, PRs). Connects AI capabilities directly into Jira project management and issue tracki

11 lines (10 loc) 373 B
import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; /** * Register generic Jira API tools with the MCP server. * Uses the modern registerTool API (SDK v1.22.0+) instead of deprecated tool() method. */ declare function registerTools(server: McpServer): void; declare const _default: { registerTools: typeof registerTools; }; export default _default;