Skip to main content
ClaudeWave
rrvrs avatar
rrvrs

jira-alerts-mcp

Ver en GitHub

MCP server for Jira Service Management Operations — alerts, on-call schedules and responders

MCP ServersRegistry oficial1 estrellas0 forksTypeScriptApache-2.0Actualizado today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (Apache-2.0)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 8/23/2026
Install in Claude Code / Claude Desktop
Method: NPX · jira-alerts-mcp
Claude Code CLI
claude mcp add jira-alerts-mcp -- npx -y jira-alerts-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "jira-alerts-mcp": {
      "command": "npx",
      "args": ["-y", "jira-alerts-mcp"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Casos de uso

Resumen de MCP Servers

<div align="center">

# Jira Alerts MCP

**Find what is paging you, and who is on call — from your agent.**

[![CI](https://github.com/rrvrs/jira-alerts-mcp/actions/workflows/ci.yml/badge.svg)](https://github.com/rrvrs/jira-alerts-mcp/actions/workflows/ci.yml)
[![npm](https://img.shields.io/npm/v/jira-alerts-mcp.svg)](https://www.npmjs.com/package/jira-alerts-mcp)
[![License: Apache 2.0](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](LICENSE)
[![Node](https://img.shields.io/badge/node-%E2%89%A524-brightgreen.svg)](https://nodejs.org)

</div>

An MCP server for **Jira Service Management Operations** — the alert surface that
replaced Opsgenie, which no other Jira MCP server covers.

Search alerts and read their notes and activity timeline; acknowledge, close,
annotate them and add responders; and look up who is on call now and next.
Twelve tools, four of them writes.

---

## Quickstart

**You need** Node ≥ 24 and an Atlassian Cloud site with JSM Operations enabled.
There is nothing to clone or build — your MCP client runs the published package.

**1. Find your cloud id.** Open this while logged in to your site:

```
https://<your-site>.atlassian.net/_edge/tenant_info
```

It answers with one line — `{"cloudId":"..."}` — and that UUID is what
`JSM_CLOUD_ID` wants. If you'd rather not rely on that endpoint, the cloud id is
also the segment after `/s/` in the URL at
[admin.atlassian.com](https://admin.atlassian.com) → Apps → Sites → your site.

**2. Create an API token** at
[id.atlassian.com](https://id.atlassian.com/manage-profile/security/api-tokens).

**3. Add the server.**

*Claude Code:*

```bash
claude mcp add jira-alerts-mcp \
  --env JSM_CLOUD_ID='your-cloud-id' \
  --env JSM_EMAIL='you@example.com' \
  --env JSM_API_TOKEN="${JSM_API_TOKEN}" \
  -- npx -y jira-alerts-mcp
```

*Claude Desktop:* open the config from the app rather than by hand — the **Claude
menu in your menu bar** (not the settings inside the window) → Settings →
Developer → **Edit Config**. That creates the file if it doesn't exist yet:

| OS | Path |
|---|---|
| macOS | `~/Library/Application Support/Claude/claude_desktop_config.json` |
| Windows | `%APPDATA%\Claude\claude_desktop_config.json` |

```json
{
  "mcpServers": {
    "jira-alerts-mcp": {
      "command": "npx",
      "args": ["-y", "jira-alerts-mcp"],
      "env": {
        "JSM_CLOUD_ID": "your-cloud-id",
        "JSM_EMAIL": "you@example.com",
        "JSM_API_TOKEN": "your-api-token"
      }
    }
  }
}
```

`mcpServers` is a **top-level key**, and the file holds every server you have
configured. If it already has an `mcpServers` block, add `jira-alerts-mcp` as
another entry inside it — pasting the whole block above over the file replaces
whatever was already there.

Then **quit Claude Desktop completely and reopen it** — the file is read only at
startup, and closing the window is not quitting. The server then appears under
the connectors panel in the message composer.

Most other MCP clients accept that same JSON shape.

**4. Check it works.** Ask your agent to list your open alerts. That runs
`jsm_list_alerts`, which needs no ids and confirms your credentials and the
`read:ops-alert` scope that eight of the twelve tools share.

Then ask who is on call, which runs `jsm_list_schedules`. That is a **separate**
check, because schedules need `read:ops-config` — if alerts work and schedules
return 401, nothing is wrong with your token; see
[Required scopes](#configuration) below.

Things that catch people out: with `claude mcp add` the server name is the first
positional argument, before any flags; `-y` on `npx` skips the install prompt,
which an MCP client has no way to answer; and in zsh `${VAR}` needs quoting. For
GUI-launched sessions the token has to live in the `env` block of the config
itself — the shell environment isn't inherited, which is why the JSON above
carries the credentials inline.

**If the server never shows up in Claude Desktop**, two causes account for
almost all of it, and neither announces itself:

- **`npx` wasn't on the PATH.** A GUI app is launched by the window manager, not
  a shell, so a Node installed through nvm often isn't visible to it. Set
  `"command"` to the absolute path from `which node` and point `"args"` at the
  installed `dist/index.js`, or install Node system-wide. A Node older than 24
  that *is* found fails as `EBADENGINE` rather than anything readable.
- **The server exited during startup.** Credentials are validated before the
  handshake, so a bad cloud id or token stops it dead — and because stdout is
  the protocol channel, that message goes to stderr only. Claude Desktop keeps
  it at `~/Library/Logs/Claude/mcp-server-jira-alerts-mcp.log` (Windows:
  `%APPDATA%\Claude\logs\`), named after the key you used under `mcpServers`.
  Look for `Startup failed:` — it names exactly what is wrong.

<details>
<summary><b>Came here from this repository's Packages panel?</b></summary>

You found `@rrvrs/jira-alerts-mcp` on GitHub Packages. That is a mirror of the
same build, published so the panel is not empty. GitHub Packages requires a
personal access token even for public packages, so installing from it needs auth
that npmjs.com does not.

Use `npx jira-alerts-mcp` above — that is
[the package on npmjs.com](https://www.npmjs.com/package/jira-alerts-mcp),
installable anonymously, and the only supported install route. The two are
separate names on separate registries; nothing redirects between them.

</details>

<details>
<summary><b>Running from a clone instead</b></summary>

Only needed to work on the server itself, or to run a revision that has not been
released:

```bash
git clone https://github.com/rrvrs/jira-alerts-mcp.git
cd jira-alerts-mcp
npm install
npm run build
```

Then point your client at the build rather than at npx, so edits take effect
without republishing:

```bash
  -- node /absolute/path/to/jira-alerts-mcp/dist/index.js
```

</details>

---

## Configuration

| Variable | Required | Notes |
|---|---|---|
| `JSM_CLOUD_ID` | yes | Your Atlassian site's cloud id (a UUID) |
| `JSM_EMAIL` + `JSM_API_TOKEN` | one of | [Create a token](https://id.atlassian.com/manage-profile/security/api-tokens) |
| `JSM_OAUTH_TOKEN` | one of | OAuth 3LO bearer; takes precedence if set |
| `TRANSPORT` | no | `stdio` (default) or `http` |
| `PORT` / `HOST` | no | HTTP transport; defaults to `127.0.0.1:3000` |
| `ALLOWED_HOSTS` | no | Comma-separated `Host` allowlist. Required if you set `HOST` beyond loopback — see [SECURITY.md](SECURITY.md) |

Credentials are validated at startup, so a bad config fails immediately with an
actionable message rather than on the first tool call.

[`.env.example`](.env.example) lists these for reference. The server does **not**
read `.env` itself — an MCP server is launched by its client, and the client owns
the environment. Use the file as a checklist for your client's `env` block, or
`set -a; source .env; set +a` for local development.

**Required scopes.** Alerts and on-call sit behind **different** scopes, which is
the single most common setup mistake:

| Tools | Scope |
|---|---|
| The 5 alert reads | `read:ops-alert:jira-service-management` |
| The 4 alert writes | `read:ops-alert:…` **and** `write:ops-alert:…` — both |
| `jsm_list_schedules`, `jsm_get_on_call`, `jsm_get_next_on_call` | `read:ops-config:jira-service-management` |

Two consequences worth knowing before you mint a token:

- **Writes need the read scope too.** A token carrying only
  `write:ops-alert:jira-service-management` fails. Atlassian requires the read
  scope alongside it on every write endpoint.
- **`ops-config` is a separate grant, and a missing one returns 401, not 403.**
  Omit it and the nine alert tools work perfectly while the three on-call tools
  fail — which reads like a broken credential and is not one. Both are supported
  configurations: granting only the read scopes, or only `ops-alert`, is a
  deliberate way to narrow what the agent can reach.

**Team visibility.** The account also needs JSM Operations access on the relevant
team. Alerts and schedules hang off a team's Operations page, so credentials that
can't see the team will get **empty lists rather than errors**.

---

## Example

Asking who is on call resolves to `jsm_list_schedules`, then `jsm_get_on_call`:

> **you** — who's on call for payments right now?

```markdown
# Currently on-call for Payments — Primary

- Dana Okafor
```

Acknowledging an alert returns a **receipt**, not the updated alert — because
JSM applies alert actions out of band:

> **you** — ack alert 4f2a9c1e-…-1718395200000, I'm looking at it

```markdown
Acknowledge request accepted for alert `4f2a9c1e-…-1718395200000`.

- **Request id**: `c7b41f30-…`
- **Result**: Request will be processed

JSM applies alert actions asynchronously, so the alert may not reflect this
change immediately. Confirm with jsm_get_request_status using the request id
above, or re-read the alert after a moment.
```

That last paragraph is the point: without it an agent re-reads the alert, sees it
still unacknowledged, and acknowledges it again.

---

## Tools

| Tool | Endpoint | Read/Write |
|---|---|---|
| `jsm_list_alerts` | `GET /v1/alerts` | read |
| `jsm_get_alert` | `GET /v1/alerts/{id}` or `GET /v1/alerts/alias` | read |
| `jsm_list_alert_notes` | `GET /v1/alerts/{id}/notes` | read |
| `jsm_list_alert_logs` | `GET /v1/alerts/{id}/logs` | read |
| `jsm_get_request_status` | `GET /v1/alerts/requests/{id}` | read |
| `jsm_acknowledge_alert` | `POST /v1/alerts/{id}/acknowledge` | write |
| `jsm_close_alert` | `POST /v1/alerts/{id}/close` | write |
| `jsm_add_alert_note` | `POST /v1/alerts/{id}/notes` | write |
| `jsm_add_alert_responder` | `POST /v1/alerts/{id}/responders` | write |
| `jsm_list_schedules` | `GET /v1/schedules` | read |
| `jsm_get_on_call` | `GET /v1/schedules/{id}/on-calls` | read |
| `jsm_get_next_on_call` | `GET /v1/schedules/{id}/next-on-calls` | read |

Deliberately **not** implemente
alertsatlassianclaudedevopsincident-responsejirajira-service-managementjsmmcpmcp-servermodel-context-protocolon-callopsgenietypescript

Lo que la gente pregunta sobre jira-alerts-mcp

¿Qué es rrvrs/jira-alerts-mcp?

+

rrvrs/jira-alerts-mcp es mcp servers para el ecosistema de Claude AI. MCP server for Jira Service Management Operations — alerts, on-call schedules and responders Tiene 1 estrellas en GitHub y su última actualización registrada es del 2026-08-22.

¿Cómo se instala jira-alerts-mcp?

+

Puedes instalar jira-alerts-mcp clonando el repositorio (https://github.com/rrvrs/jira-alerts-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar rrvrs/jira-alerts-mcp?

+

Nuestro agente de seguridad ha analizado rrvrs/jira-alerts-mcp y le ha asignado un Trust Score de 95/100 (tier: Verified). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene rrvrs/jira-alerts-mcp?

+

rrvrs/jira-alerts-mcp es mantenido por rrvrs. La última actividad registrada en GitHub es del 2026-08-22, con 0 issues abiertos.

¿Hay alternativas a jira-alerts-mcp?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega jira-alerts-mcp en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: rrvrs/jira-alerts-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/rrvrs-jira-alerts-mcp)](https://claudewave.com/repo/rrvrs-jira-alerts-mcp)
<a href="https://claudewave.com/repo/rrvrs-jira-alerts-mcp"><img src="https://claudewave.com/api/badge/rrvrs-jira-alerts-mcp" alt="Featured on ClaudeWave: rrvrs/jira-alerts-mcp" width="320" height="64" /></a>

Más MCP Servers

Alternativas a jira-alerts-mcp