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
Visit Server

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

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured