MCP server intelligence profile

jira-cli-mcp Server

MCP server that wraps the jira-cli command-line tool to enable AI assistants to interact with Jira

Local Onlychoplin
Awaiting current scanNpm · 0.4.0

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

1Distribution channel
8Independently 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 @choplin/jira-cli-mcp from npm

Version 0.4.0 declares 1 executable entrypoint.

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

Identity

Canonical slugjira-cli-mcp-df3f2fa9DeploymentLocal Only
Canonical packagenpm:@choplin/jira-cli-mcpRepositorychoplin/jira-cli-mcp
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npm@choplin/jira-cli-mcp0.4.01Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npm@choplin/jira-cli-mcp0.4.0CurrentSep 5, 20268 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-03-26Negotiated protocol
jira-cli-mcpServer-reported name
1Capability groups
Aug 17, 2026Observed

Tools 8

ToolCategoryAnnotationsRisk
add_commentAdd a comment to a Jira ticket
Input schema
{
  "type": "object",
  "properties": {
    "ticketKey": {
      "type": "string",
      "description": "Jira ticket key (e.g., PROJ-123)"
    },
    "comment": {
      "type": "string",
      "description": "Comment text to add to the ticket"
    }
  },
  "required": [
    "ticketKey",
    "comment"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Annotations
{
  "title": "Add Comment to Ticket",
  "readOnlyHint": false,
  "destructiveHint": false,
  "idempotentHint": false,
  "openWorldHint": true
}
WritesNon-destructiveNon-idempotentOpen world
assign_to_meAssign a Jira ticket to the current user
Input schema
{
  "type": "object",
  "properties": {
    "ticketKey": {
      "type": "string",
      "description": "Jira ticket key (e.g., PROJ-123)"
    }
  },
  "required": [
    "ticketKey"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Annotations
{
  "title": "Assign Ticket to Me",
  "readOnlyHint": false,
  "destructiveHint": false,
  "idempotentHint": true,
  "openWorldHint": true
}
WritesNon-destructiveIdempotentOpen world
create_ticketCreate a new Jira ticket
Input schema
{
  "type": "object",
  "properties": {
    "project": {
      "type": "string",
      "description": "Jira project key (e.g., PROJ)"
    },
    "type": {
      "type": "string",
      "description": "Issue type (e.g., Bug, Story, Task)"
    },
    "summary": {
      "type": "string",
      "description": "Issue summary/title"
    },
    "description": {
      "type": "string",
      "description": "Issue description (markdown supported)"
    },
    "priority": {
      "type": "string",
      "description": "Priority level (e.g., High, Medium, Low)"
    },
    "assignee": {
      "type": "string",
      "description": "Assignee username or email"
    },
    "labels": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of labels to add"
    },
    "components": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of components to add"
    }
  },
  "required": [
    "project",
    "type",
    "summary"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Annotations
{
  "title": "Create Jira Ticket",
  "readOnlyHint": false,
  "destructiveHint": false,
  "idempotentHint": false,
  "openWorldHint": true
}
WritesNon-destructiveNon-idempotentOpen world
get_ticketGet detailed information about a specific Jira ticket
Input schema
{
  "type": "object",
  "properties": {
    "ticketKey": {
      "type": "string",
      "description": "Jira ticket key (e.g., PROJ-123)"
    },
    "comments": {
      "type": "number",
      "default": 5,
      "description": "Number of comments to include"
    }
  },
  "required": [
    "ticketKey"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Annotations
{
  "title": "Get Jira Ticket Details",
  "readOnlyHint": true,
  "destructiveHint": false,
  "idempotentHint": true,
  "openWorldHint": true
}
Read onlyNon-destructiveIdempotentOpen world
list_ticketsSearch and list Jira tickets with filters
Input schema
{
  "type": "object",
  "properties": {
    "jql": {
      "type": "string",
      "description": "Raw JQL query (advanced users only)"
    },
    "limit": {
      "type": "number",
      "default": 20,
      "description": "Maximum number of tickets to return"
    },
    "assignedToMe": {
      "type": "boolean",
      "description": "Show only tickets assigned to me"
    },
    "unassigned": {
      "type": "boolean",
      "description": "Show only unassigned tickets"
    },
    "status": {
      "type": "string",
      "enum": [
        "open",
        "in progress",
        "in review",
        "done",
        "closed",
        "canceled",
        "todo",
        "to do"
      ],
      "description": "Filter by status"
    },
    "project": {
      "type": "string",
      "description": "Filter by project key (e.g., 'PROJ')"
    },
    "createdRecently": {
      "type": "boolean",
      "description": "Show tickets created in the last 7 days"
    },
    "updatedRecently": {
      "type": "boolean",
      "description": "Show tickets updated in the last 7 days"
    },
    "orderBy": {
      "type": "string",
      "enum": [
        "created",
        "updated",
        "priority"
      ],
      "description": "Sort tickets by field"
    },
    "orderDirection": {
      "type": "string",
      "enum": [
        "asc",
        "desc"
      ],
      "description": "Sort direction"
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Annotations
{
  "title": "List Jira Tickets",
  "readOnlyHint": true,
  "destructiveHint": false,
  "idempotentHint": true,
  "openWorldHint": true
}
Read onlyNon-destructiveIdempotentOpen world
move_ticketMove a Jira ticket to a different status
Input schema
{
  "type": "object",
  "properties": {
    "ticketKey": {
      "type": "string",
      "description": "Jira ticket key (e.g., PROJ-123)"
    },
    "status": {
      "type": "string",
      "enum": [
        "open",
        "in progress",
        "in review",
        "done",
        "closed",
        "canceled",
        "todo",
        "to do"
      ],
      "description": "Target status to move the ticket to"
    }
  },
  "required": [
    "ticketKey",
    "status"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Annotations
{
  "title": "Move Ticket Status",
  "readOnlyHint": false,
  "destructiveHint": false,
  "idempotentHint": false,
  "openWorldHint": true
}
WritesNon-destructiveNon-idempotentOpen world
open_ticket_in_browserOpen a Jira ticket in the default web browser
Input schema
{
  "type": "object",
  "properties": {
    "ticketKey": {
      "type": "string",
      "description": "Jira ticket key (e.g., PROJ-123)"
    }
  },
  "required": [
    "ticketKey"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Annotations
{
  "title": "Open Ticket in Browser",
  "readOnlyHint": true,
  "destructiveHint": false,
  "idempotentHint": true,
  "openWorldHint": true
}
Read onlyNon-destructiveIdempotentOpen world
update_ticket_descriptionUpdate the description of a Jira ticket
Input schema
{
  "type": "object",
  "properties": {
    "ticketKey": {
      "type": "string",
      "description": "Jira ticket key (e.g., PROJ-123)"
    },
    "description": {
      "type": "string",
      "description": "New description content for the ticket"
    }
  },
  "required": [
    "ticketKey",
    "description"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Annotations
{
  "title": "Update Ticket Description",
  "readOnlyHint": false,
  "destructiveHint": true,
  "idempotentHint": false,
  "openWorldHint": true
}
WritesDestructiveNon-idempotentOpen world

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

jira-cli-mcp Server questions

How do I install jira-cli-mcp Server?

Install the selected package version with: npm install --save-exact @choplin/jira-cli-mcp@0.4.0

What tools does jira-cli-mcp Server provide?

jira-cli-mcp Server exposed 8 tools during independent protocol observation, including add_comment, assign_to_me, create_ticket, get_ticket, list_tickets, move_ticket, open_ticket_in_browser, update_ticket_description.

Is jira-cli-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.