MCP server intelligence profile

jira-pm-mcp Server

Wraps JIRA Cloud REST API for AI-driven agile project management, enabling sprint health monitoring, label syncing, risk flagging, and audit receipt writing

Local Onlypanitw
Awaiting current scanNpm · 0.1.1

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 jira-pm-mcp from npm

Version 0.1.1 declares 1 executable entrypoint.

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

Identity

Canonical slugjira-pm-mcp-fe0b27abDeploymentLocal Only
Canonical packagenpm:jira-pm-mcpRepositorypanitw/jira-mcp-server
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npmjira-pm-mcp0.1.11Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npmjira-pm-mcp0.1.1CurrentSep 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-06-18Negotiated protocol
jira-pm-mcpServer-reported name
1Capability groups
Aug 22, 2026Observed

Tools 8

ToolCategoryAnnotationsRisk
blocker_reportFind and rank everything getting in the way in a sprint. Goes beyond the Blocked column: fuses the impediment flag, open 'is blocked by' links, hard Blocked status, stale in-progress tickets, and natural-language cues in comments ('waiting on', 'stuck', 'dependency') into one severity-ranked list. Defaults to the active sprint.
Input schema
{
  "type": "object",
  "properties": {
    "boardId": {
      "type": "integer",
      "description": "Board id. Optional when the account has a single board. Use jira_list_boards to find ids."
    },
    "sprintId": {
      "type": "integer",
      "description": "Sprint id. Optional: defaults to the active sprint (or the most recent closed one)."
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
burndown_analysisReconstruct the sprint burndown from the changelog: remaining work per day vs the ideal line, daily burn rate vs the rate needed to finish, and a projected completion date. This is a close approximation built from issue history, not a copy of Jira's chart. Defaults to the active sprint.
Input schema
{
  "type": "object",
  "properties": {
    "boardId": {
      "type": "integer",
      "description": "Board id. Optional when the account has a single board. Use jira_list_boards to find ids."
    },
    "sprintId": {
      "type": "integer",
      "description": "Sprint id. Optional: defaults to the active sprint (or the most recent closed one)."
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
jira_list_boardsList the Jira boards this account can see, with their ids. Use the id with the other tools when the account has more than one board.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {}
}
jira_list_sprintsList sprints for a board with their ids, state, and dates. Pass a boardId when the account has multiple boards. Optionally filter by state.
Input schema
{
  "type": "object",
  "properties": {
    "boardId": {
      "type": "integer",
      "description": "Board id. Optional when the account has a single board."
    },
    "state": {
      "type": "string",
      "enum": [
        "active",
        "closed",
        "future"
      ],
      "description": "Filter by sprint state."
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
sprint_health_summaryRead of how a sprint is tracking: completion vs time elapsed, a plain-language verdict (on track / at risk / behind), scope added mid-sprint, and the specific items putting the sprint at risk (blocked, stale, unassigned). Defaults to the active sprint. Falls back to issue counts when the team does not estimate in points.
Input schema
{
  "type": "object",
  "properties": {
    "boardId": {
      "type": "integer",
      "description": "Board id. Optional when the account has a single board. Use jira_list_boards to find ids."
    },
    "sprintId": {
      "type": "integer",
      "description": "Sprint id. Optional: defaults to the active sprint (or the most recent closed one)."
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
standup_generatorGenerate a daily standup, grouped by assignee: what each person finished recently, what they are working on, and what is blocking them. Pasteable straight into Slack. Defaults to the active sprint and a one-day lookback (use sinceDays for Monday standups that cover the weekend).
Input schema
{
  "type": "object",
  "properties": {
    "boardId": {
      "type": "integer",
      "description": "Board id. Optional when the account has a single board. Use jira_list_boards to find ids."
    },
    "sprintId": {
      "type": "integer",
      "description": "Sprint id. Optional: defaults to the active sprint (or the most recent closed one)."
    },
    "sinceDays": {
      "type": "integer",
      "minimum": 1,
      "maximum": 14,
      "description": "Lookback window in days for 'recently done'. Default 1."
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
velocity_trendsVelocity across recent closed sprints: committed vs completed per sprint, average velocity, commitment accuracy, predictability (how consistent the team is), the trend, and a recommended commitment for the next sprint. Pass a boardId if the account has more than one board.
Input schema
{
  "type": "object",
  "properties": {
    "boardId": {
      "type": "integer",
      "description": "Board id. Optional when the account has a single board."
    },
    "count": {
      "type": "integer",
      "minimum": 2,
      "maximum": 20,
      "description": "How many recent closed sprints to analyze. Default 5."
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
weekly_status_noteGenerate a stakeholder-ready weekly status note: a single RAG status, a short narrative, what was delivered this week, the top risks and blockers with owners, velocity context, and the focus for next week. Composes sprint health, blockers, and velocity into one note you can send as-is. Defaults to the active sprint.
Input schema
{
  "type": "object",
  "properties": {
    "boardId": {
      "type": "integer",
      "description": "Board id. Optional when the account has a single board. Use jira_list_boards to find ids."
    },
    "sprintId": {
      "type": "integer",
      "description": "Sprint id. Optional: defaults to the active sprint (or the most recent closed one)."
    }
  },
  "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-pm-mcp Server questions

How do I install jira-pm-mcp Server?

Install the selected package version with: npm install --save-exact jira-pm-mcp@0.1.1

What tools does jira-pm-mcp Server provide?

jira-pm-mcp Server exposed 8 tools during independent protocol observation, including blocker_report, burndown_analysis, jira_list_boards, jira_list_sprints, sprint_health_summary, standup_generator, velocity_trends, weekly_status_note.

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