Skip to main content
Glama
iljasorokin

jira-dc-advops-mcp

by iljasorokin

jira-dc-advops-mcp

Local MCP helpers for Jira Data Center advanced ops used from Cursor.

Русская документация: README.ru.md.

Capabilities:

  1. Tempo Structure — read / update boards (hierarchy + column values) via /rest/structure/2.0/*

  2. Agile Kanban / Scrum — board columns + issue placement via /rest/agile/1.0/* (daily standup reports)

Talks to the same proxy/auth as @atlassian-dc-mcp/jira (local TLS proxy + token from keychain / env). Prefer these tools over ad-hoc curl to the public Jira hostname.

  • structureId from StructureBoard.jspa?s=<id>

  • boardId from RapidBoard.jspa?rapidView=<id>

Auth

Same sources as @atlassian-dc-mcp/jira:

  • JIRA_HOST (env or ~/.atlassian-dc-mcp/jira.env) — typically your local proxy, e.g. https://localhost:8444

  • JIRA_API_TOKEN (env), or macOS Keychain service atlassian-dc-mcp / account jira-token

Do not commit tokens or *.env files. See SECURITY.md.

Related MCP server: MCP Atlassian Node Server

Tools — Structure (read)

Tool

When

structure_list

List structures visible to the user (name filter optional)

structure_get

Structure metadata by id (name, owner, permissions flags)

structure_getForest

Raw forest (formula + parsed flat rows) for a structure

structure_getValues

Attribute matrix for given rows (key/summary/status/…)

structure_getBoard

Fast path: forest + values as nested tree (default attrs)

structure_getBoardToFile

Same as getBoard, dump JSON to a local file (large boards)

structure_listFolders

Folders in a structure (rowId, name/summary, folderId)

Tools — Structure (write)

Tool

When

structure_addIssues

Add issue(s) under a folder / parent row (underRowId | folderName | folderId)

Tools — Agile boards (read)

Tool

When

agile_listBoards

Find boards by name / type / project

agile_getBoard

Board metadata (name, type)

agile_getBoardConfiguration

Columns + status→column map + kanban subQuery

agile_getBoardIssues

Issues on a board with column placement

agile_getBoardSnapshot

Daily path: issues grouped by column

agile_getBoardSnapshotToFile

Same snapshot → local JSON file

agile_locateIssues

Where are these keys on the board?

Daily standup snapshot

agile_listBoards
  name: "Team"
  type: kanban

agile_getBoardSnapshot
  boardId: 123
  jql: "assignee = currentUser() AND resolution = EMPTY"
  excludeColumns: ["Done"]
  # includeBacklog: false (default) — skip fabricated kanban Backlog column

Returns ordered columns with compact issues (key, summary, status, column, assignee, …).

Column placement = issue status id mapped through board configuration. For kanban, the board subQuery is ANDed by default so the set closer matches what the UI shows.

Locate specific issues

agile_locateIssues
  boardId: 123
  issueKeys: ["PROJ-1", "PROJ-2"]

Add issues under a Structure folder

structure_listFolders
  structureId: 123

structure_addIssues
  structureId: 123
  folderName: "My folder"   # or underRowId: <rowId>
  issueKeys: ["PROJ-1", "PROJ-2"]
  # skipIfPresent: true (default)

Uses POST /rest/structure/2.0/forest/update with action: add. Resolves issue keys → numeric ids. Skips issues already direct children of the parent unless skipIfPresent: false.

Fast path for a Structure Board

structure_getBoard
  structureId: 123
  # optional attributes override; default: key, summary, status, issuetype

Returns nested { rowId, depth, issueId?, itemType?, values, children[] }.

Generators / loop markers are included unless includeGenerators: false.

Forest formula

Structure returns a serialized formula. This MCP parses it into rows:

rowId:depth:itemIdentity where itemIdentity is either an issue id (14707) or a typed id (5/240 → folder / generator / … via itemTypes).

Cursor config

"jira-dc-advops": {
  "command": "node",
  "args": ["/path/to/jira-dc-advops-mcp/index.js"],
  "env": {
    "JIRA_HOST": "https://localhost:8444",
    "NODE_TLS_REJECT_UNAUTHORIZED": "0"
  }
}

After changing index.js / agile.js, reload MCP servers in Cursor so new tools appear.

Notes

  • Forest write beyond structure_addIssues (move/remove rows, create folders) is not exposed yet.

  • For issue details beyond board columns (Status Comment, links, …), use user-jira-dc (jira_getIssue / JQL).

  • Large boards: prefer *ToFile tools over stuffing full payloads into chat.

  • Agile tools do not move issues between columns (that is a workflow transition — use user-jira-dc).

Install Server
F
license - not found
A
quality
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

View all related MCP servers

Related MCP Connectors

  • Confluence MCP — wraps the Confluence Cloud REST API v2 (OAuth)

  • Monday.com MCP — wraps the Monday.com GraphQL API (BYO API key)

  • ClickUp MCP — wraps the ClickUp REST API v2 (BYO API key)

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/iljasorokin/jira-dc-advops-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server