MCP server intelligence profile

JIRA MCP Server

Provides tools for AI assistants to interact with JIRA APIs, enabling them to read, create, update, and manage JIRA issues through standardized MCP tools

Local Onlyhackdonalds
Awaiting current scanNpm · 0.1.0

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
6Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install @hackdonalds/jira-mcp from npm

Version 0.1.0 declares 1 executable entrypoint.

npm install --save-exact @hackdonalds/jira-mcp@0.1.0
npx -y -p @hackdonalds/jira-mcp@0.1.0 @hackdonalds/jira-mcp
MCP client configuration example
{
  "mcpServers": {
    "@hackdonalds/jira-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "@hackdonalds/jira-mcp@0.1.0",
        "@hackdonalds/jira-mcp"
      ]
    }
  }
}

Identity

Canonical slugjira-mcp-server-bb4a62deDeploymentLocal Only
Canonical packagenpm:@hackdonalds/jira-mcpRepositoryhackdonalds/jira-mcp
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npm@hackdonalds/jira-mcp0.1.01Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npm@hackdonalds/jira-mcp0.1.0CurrentSep 5, 20266 toolsSucceeded · 0 resources · 0 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2025-06-18Negotiated protocol
jira-mcp-serverServer-reported name
1Capability groups
Aug 22, 2026Observed

Tools 6

ToolCategoryAnnotationsRisk
jira_add_commentAdd a comment to a JIRA issue
Input schema
{
  "type": "object",
  "properties": {
    "issueKey": {
      "type": "string",
      "description": "The JIRA issue key"
    },
    "comment": {
      "type": "string",
      "description": "Comment text"
    }
  },
  "required": [
    "issueKey",
    "comment"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
jira_create_issueCreate a new JIRA issue
Input schema
{
  "type": "object",
  "properties": {
    "project": {
      "type": "string",
      "description": "Project key"
    },
    "issueType": {
      "type": "string",
      "description": "Issue type (e.g., Bug, Task, Story)"
    },
    "summary": {
      "type": "string",
      "description": "Issue summary"
    },
    "description": {
      "type": "string",
      "description": "Issue description"
    },
    "assignee": {
      "type": "string",
      "description": "Assignee account ID"
    },
    "priority": {
      "type": "string",
      "description": "Priority name"
    }
  },
  "required": [
    "project",
    "issueType",
    "summary"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
jira_get_issueGet details of a specific JIRA issue
Input schema
{
  "type": "object",
  "properties": {
    "issueKey": {
      "type": "string",
      "description": "The JIRA issue key (e.g., PROJECT-123)"
    }
  },
  "required": [
    "issueKey"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
jira_searchSearch issues using JQL (JIRA Query Language)
Input schema
{
  "type": "object",
  "properties": {
    "jql": {
      "type": "string",
      "description": "JQL query string"
    },
    "startAt": {
      "type": "number",
      "description": "Starting index for pagination (default: 0)"
    },
    "maxResults": {
      "type": "number",
      "description": "Maximum number of results (default: 50)"
    }
  },
  "required": [
    "jql"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
jira_transition_issueTransition an issue to a new status
Input schema
{
  "type": "object",
  "properties": {
    "issueKey": {
      "type": "string",
      "description": "The JIRA issue key"
    },
    "transitionId": {
      "type": "string",
      "description": "The transition ID"
    },
    "comment": {
      "type": "string",
      "description": "Optional comment for the transition"
    }
  },
  "required": [
    "issueKey",
    "transitionId"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
jira_update_issueUpdate an existing JIRA issue
Input schema
{
  "type": "object",
  "properties": {
    "issueKey": {
      "type": "string",
      "description": "The JIRA issue key"
    },
    "summary": {
      "type": "string",
      "description": "New summary"
    },
    "description": {
      "type": "string",
      "description": "New description"
    },
    "assignee": {
      "type": "string",
      "description": "New assignee account ID"
    },
    "priority": {
      "type": "string",
      "description": "New priority name"
    }
  },
  "required": [
    "issueKey"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

JIRA MCP Server questions

How do I install JIRA MCP Server?

Install the selected package version with: npm install --save-exact @hackdonalds/jira-mcp@0.1.0

What tools does JIRA MCP Server provide?

JIRA MCP Server exposed 6 tools during independent protocol observation, including jira_add_comment, jira_create_issue, jira_get_issue, jira_search, jira_transition_issue, jira_update_issue.

Is JIRA MCP Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Company and product intelligence

These internal links are derived from strong identity fields such as the implementation name, package, repository, vendor, and listing name—not generic description prose.

Associated company landscape

Atlassian intelligence →

Association is based on retained identity fields; it does not by itself prove first-party publication.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.