Jira Data Center MCP Server

Jira Data Center MCP Server

Enables AI assistants to deeply introspect Jira Data Center configurations — including workflows, schemes, automation, and Assets — through 76 read-only tools, without any modification capability.

Category
访问服务器

README

Jira Data Center 10 MCP Server (TypeScript)

License: MIT Node.js >=20 TypeScript MCP

A read-only Model Context Protocol (MCP) server for deep introspection of Jira Data Center 10 — 76 tools covering projects, workflows, schemes, fields, automation, Assets (Insight), and more.

Read-only — this server cannot modify any Jira configuration.

Why

Jira DC administration is config archaeology: the answer to "why did this happen?" hides somewhere in a chain of workflow → post-functions → automation rules → permission/field/screen schemes, and the admin UI shows that chain one screen at a time. This server hands the whole picture to an AI assistant in a single conversation — it can trace a project's full scheme chain, explain why an automation rule fired (or didn't), find every screen a custom field sits on, resolve who effectively holds a permission, or grep the server log, without SSH access and without any ability to change anything.

Most data comes from Jira's native REST API. The parts Jira only exposes through its Java API — listeners, scheduled services, effective permissions, transition rule internals, server logs — are unlocked by a companion set of ScriptRunner REST endpoints (a single GET-only Groovy file, see scriptrunner-endpoints/).

Example prompts

  • "Why didn't the automation rule 'Notify on escalation' fire for PROJ-123 yesterday?"
  • "Compare the workflows of projects A and B and list every difference in transitions and post-functions."
  • "Which screens, projects and issue types still use the custom field 'Severity'? Can I delete it?"
  • "Who effectively has 'Delete Issues' permission in PROJ, and through which groups or roles?"
  • "Grep atlassian-jira.log for indexing errors around 14:00 and summarize the stack traces."

Prerequisites

  • Node.js 20 LTS or newer
  • Jira Data Center 10.x
  • A Jira PAT with Jira Administrator permission (for full config reads)

Building

npm install
npm run build

MCP client configuration

See .mcp.json.example for an example configuration file.

Self-test

npm run selftest exercises all 76 tools against the live Jira instance and prints a coverage report — one line per tool variant, then a summary. It auto-discovers the IDs/keys parameterised tools need (project keys, scheme IDs, workflow names, ...) from the list_*/dump_* tools, so no manual setup is needed. Credentials are read from the environment, falling back to the jira-dc server's env block in .mcp.json.

npm run selftest                          # all 76 tools
npm run selftest -- --only get_workflow_detail   # one tool (deps auto-included)
npm run selftest -- --skip find_field_usage      # exclude slow tools

Each tool's raw JSON output is written to selftest-output/<tool>.json, with a full machine-readable report at selftest-output/_report.json. Flags: --only, --skip, --out-dir PATH, --json PATH.

Tools

All 76 tools are read-only against Jira (one, dump_script_registry, also writes its export bundle to a local directory). Tools marked † require the companion ScriptRunner Groovy endpoints (see scriptrunner-endpoints/).

Projects

  • list_projects — all projects with key, name, type, lead
  • get_project_config — a project's full scheme chain and issue types
  • get_project_role_members — roles and their members/actors for a project
  • get_project_components — components with leads and descriptions
  • get_project_versions — versions with release status and dates
  • list_project_categories — all project categories

Workflows

  • list_active_workflows — active workflows (excludes backups and copies)
  • list_all_workflows — all workflows including backups and deprecated
  • get_workflow_detail — full workflow: statuses, transitions, conditions, validators, post-functions
  • get_workflow_statuses_and_transitions — statuses and transitions with screens and fields
  • list_workflow_schemes — all workflow schemes with issue-type mappings
  • get_workflow_scheme — one workflow scheme by ID
  • get_workflow_transition_details † — full transition rule config (post-function, condition, validator args)

Screens

  • list_screens — all screens with IDs and names
  • get_screen_tabs_and_fields — a screen's tabs and ordered fields
  • list_screen_schemes — all screen schemes with operation mappings
  • get_screen_scheme — one screen scheme with screens and tabs
  • list_issue_type_screen_schemes † — issue-type-to-screen-scheme mappings and projects
  • get_issue_type_screen_scheme — one issue type screen scheme

Fields

  • list_fields — all system and custom fields with types
  • list_custom_fields_usage — custom fields with usage stats (issues, projects, screens)
  • get_field_configuration — field config items: required, hidden, renderer
  • get_field_configuration_scheme — maps issue types to field configurations
  • find_field_usage — where a field appears across all screens
  • get_createmeta_fields — fields on the create screen for a project + issue type
  • get_field_contexts — custom field contexts: project and issue-type scope

Schemes

  • get_permission_scheme — full permission scheme with all grants
  • list_permission_schemes — all permission schemes with grant counts
  • get_notification_scheme — event-to-notification mappings
  • list_notification_schemes — all notification schemes
  • get_issue_type_scheme — available issue types and the default
  • get_issue_security_scheme — issue security scheme with security levels
  • get_priority_scheme — priority scheme (Jira DC 10)

Automation

  • list_automation_rules — Automation for Jira (A4J) rules from the cache
  • get_automation_rule_detail — full rule: trigger, conditions, actions, smart values
  • get_automation_audit_log — recent executions across all rules
  • get_automation_rule_audit_log — execution history for one rule
  • get_automation_audit_item — detail for a single audit entry
  • refresh_automation_cache — force an automation cache refresh

Boards

  • list_boards — all agile boards (Scrum/Kanban)
  • get_board_configuration — columns, WIP limits, estimation, ranking, backing filter

Service Desk

  • list_service_desks — all JSM service desks with project associations
  • get_service_desk_queues — queues for a JSM service desk

Assets (Insight)

Read-only introspection of Atlassian Assets (formerly Insight) on Data Center. Uses the /rest/insight/1.0 API on the Jira host with IQL; override the base path with the optional ASSETS_API_BASE env var (default /rest/insight/1.0). The PAT user needs read access to the relevant Assets object schemas.

  • list_object_schemas — all Assets object schemas with key, status, object/type counts
  • get_object_schema — one object schema's metadata by ID
  • list_object_types — object types in a schema (flat list, or hierarchical tree)
  • get_object_type — one object type's metadata (parent, position, abstract, icon)
  • get_object_type_attributes — attribute definitions for an object type (type, references, cardinality, required)
  • get_schema_attributes — all attribute definitions across a schema
  • list_object_statuses — Assets status types and categories (global or schema-scoped)
  • search_objects_iql — search objects with IQL (Insight Query Language); paginated
  • get_object — one object by ID with its attribute values
  • get_object_connected_tickets — Jira issues connected to an object
  • dump_assets_schema — full structural snapshot: schema, statuses, and all object types with attributes

Filters & Dashboards

  • list_filters — favourite/shared JQL filters
  • list_dashboards — all dashboards with owner and popularity

Analysis

  • analyze_project_config_chain — resolve a project's scheme chain, report inconsistencies
  • search_config — free-text search across all config entities

Issues

  • get_issue — a Jira issue by key
  • get_issue_changelog — an issue's edit history

Users

  • get_user — user details by key, username, or ID
  • find_users — search users by name or email
  • get_user_groups — groups a user belongs to
  • get_group_members — members of a group

Administration († ScriptRunner-backed)

  • list_listeners † — registered event listeners
  • list_scheduled_services † — scheduled services with cron schedules
  • list_application_links † — links to Confluence, Bitbucket, Bamboo, etc.
  • get_effective_permissions † — effective project permissions via groups, roles, grants
  • dump_plugin_inventory — installed apps with version, enabled state, and license (user-installed by default)

Server logs († ScriptRunner-backed, jira-administrators only)

  • list_server_log_files † — log files in the Jira and Tomcat log directories with size and mtime
  • tail_server_log † — last N lines of a log file (default atlassian-jira.log)
  • grep_server_log † — regex search over a log file and its rotations, with before/after context; matches return in chronological order

Dump

  • dump_global_config — all fields, issue types, statuses, resolutions, priorities, link types
  • dump_workflows — all workflows with statuses, transitions, and rules
  • dump_automation_rules — all A4J rules from the cache
  • dump_script_registry — full ScriptRunner inventory (listeners, REST endpoints, jobs, behaviours, fragments, script fields, resources, workflow functions, script-root .groovy files, instance metadata, Output.csv) reproducing ScriptRunner's "Export all scripts" bundle. Writes the bundle to a local directory (output_dir); reads from Jira are read-only.

License

MIT © sergeyopypey, Ivnrv, peppingdore

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选