🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

jira-admin-mcp

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jira-admin-mcp

A Model Context Protocol (MCP) server giving AI assistants 78 tools to administer a Jira Cloud site: issues, users, groups, projects, permissions, custom fields, workflows, screens, filters, and bulk operations.

pipPyPI
Version
0.1.1
Weekly downloads
111
Maintainers
1

Jira Admin MCP Server

PyPI version Python License: MIT CI MCP

A Model Context Protocol server that gives an AI assistant (Claude, Cursor, VS Code, or any MCP client) 78 purpose-built tools to administer a Jira Cloud site - not just read and create tickets, but the behind-the-scenes admin work: custom fields and where they appear, permission schemes, workflows, screens, issue-type schemes, groups, project roles, saved filters, and bulk operations.

Most Jira MCP servers cover everyday usage. This one covers administration, and adds safety rails (dry-run mode, shared-scheme detection, identity checks before group changes, actionable errors) so an agent can run real admin jobs end to end.

Built with FastMCP. Talks to the Jira Cloud REST API v3 with your own Atlassian email + API token.

Quick start

Two prerequisites, both one-time and quick:

Then add the server with the one-click button or one-line command for your tool, and fill in your three JIRA_* values.

Cursor

Add to Cursor

Click the button, confirm in Cursor, then open ~/.cursor/mcp.json (or Cursor Settings -> MCP) and set JIRA_BASE_URL, JIRA_EMAIL, and JIRA_API_TOKEN on the jira-admin entry.

Claude Code

One command (swap in your own three values):

claude mcp add --scope user \
  --env JIRA_BASE_URL=https://your-company.atlassian.net \
  --env JIRA_EMAIL=you@your-company.com \
  --env JIRA_API_TOKEN=your_api_token_here \
  --transport stdio jira-admin \
  -- uvx jira-admin-mcp

--scope user makes it available in every project; drop it to add only to the current one. Check with claude mcp list.

VS Code

Install in VS Code Install in VS Code Insiders

After installing, set your JIRA_* values on the jira-admin entry in .vscode/mcp.json (or your user mcp.json).

Any other MCP client (manual)

Add this block to the client's MCP config:

{
  "mcpServers": {
    "jira-admin": {
      "command": "uvx",
      "args": ["jira-admin-mcp"],
      "env": {
        "JIRA_BASE_URL": "https://your-company.atlassian.net",
        "JIRA_EMAIL": "you@your-company.com",
        "JIRA_API_TOKEN": "your_api_token_here"
      }
    }
  }
}

Want the unreleased main instead of the PyPI release? Replace "args": ["jira-admin-mcp"] with "args": ["--from", "git+https://github.com/its-qusai-nasr/jira-admin-mcp", "jira-mcp"].

Config file locations: Claude Desktop claude_desktop_config.json (macOS ~/Library/Application Support/Claude/, Windows %APPDATA%\Claude\); Cursor ~/.cursor/mcp.json; VS Code .vscode/mcp.json (note: VS Code uses a top-level "servers" key instead of "mcpServers"). Restart the client after editing; the server appears as jira-admin with all 78 tools.

Local clone (for development)

git clone https://github.com/its-qusai-nasr/jira-admin-mcp
cd jira-admin-mcp
uv sync                 # creates .venv and installs deps from uv.lock
cp .env.example .env    # then edit .env with your Jira credentials
uv run jira-mcp         # starts the server over stdio

Configuration

The server reads its settings from environment variables (passed via the env block above, or from a .env file in the project directory when you run a local clone).

VariableRequiredDescription
JIRA_BASE_URLyesYour Jira Cloud base URL, e.g. https://your-company.atlassian.net
JIRA_EMAILyesThe Atlassian account email that owns the API token
JIRA_API_TOKENyesAPI token from https://id.atlassian.com/manage-profile/security/api-tokens
JIRA_DRY_RUNnotrue simulates all writes (POST/PUT/DELETE) and returns the payload that would be sent, without calling Jira. Defaults to false.

Tip: set JIRA_DRY_RUN=true for your first session. Every write tool will return a {"dry_run": true, "would_call": ...} preview so you can watch what the agent intends to do before letting it touch live data.

What you can ask for

Once connected, the assistant can do things like:

  • "Add alice@example.com to the jira-developers group."
  • "Scope the Team custom field to projects ENG and OPS only, for the Story and Bug issue types."
  • "Which projects share permission scheme 10789? I want to edit it without breaking the others."
  • "Move every Internal Task in project OPS to the Task type, then transition the open ones to In Progress."
  • "Create a saved filter for unresolved bugs assigned to me and share it with the developers group."
  • "Show me the change history for PROJ-123 and tell me who reopened it."

Tools (78 total)

Issues (12)
ToolDescription
jira_issues_searchSearch issues using JQL with pagination
jira_issues_getGet single issue by key (summary or full detail)
jira_issues_createCreate issue with project, type, fields
jira_issues_updateUpdate fields on existing issue
jira_issues_transitionTransition to new status (auto-resolves transition ID)
jira_issues_assignAssign/unassign issue
jira_issues_get_transitionsList available workflow transitions
jira_issues_get_createmetaGet required fields for creating issues
jira_issues_deleteDelete an issue permanently
jira_issues_linkCreate a link between two issues
jira_issues_get_changelogGet audit history (who changed what)
jira_issues_bulk_createBulk create up to 50 issues
Comments (2)
ToolDescription
jira_comments_listList comments on an issue
jira_comments_addAdd comment (plain text auto-converted to ADF)
Users (2)
ToolDescription
jira_users_searchSearch by email or display name
jira_users_getGet user details + groups by account ID
Groups (6)
ToolDescription
jira_groups_listList groups with member counts
jira_groups_get_membersGet members of a group
jira_groups_add_userAdd user to group
jira_groups_remove_userRemove user from group
jira_groups_createCreate a new group
jira_groups_deleteDelete a group
Projects (10)
ToolDescription
jira_projects_listList projects filtered by name/key
jira_projects_getGet project details + issue types
jira_projects_get_statusesAll statuses grouped by issue type
jira_projects_get_rolesRoles with actors (users/groups)
jira_projects_update_roleAdd/remove actors from project roles
jira_projects_get_versionsList versions/releases in a project
jira_projects_create_versionCreate a new version/release
jira_projects_get_featuresGet enabled/disabled features
jira_projects_get_notification_schemeGet notification scheme
jira_projects_get_categoriesList project categories
Permissions (4)
ToolDescription
jira_permissions_list_schemesList all permission schemes
jira_permissions_get_schemeGet scheme with all grants
jira_permissions_add_grantAdd permission grant to scheme
jira_permissions_assign_schemeAssign scheme to project
Custom Fields (12)
ToolDescription
jira_fields_searchSearch fields by name, find field IDs
jira_fields_get_contextsGet contexts for a custom field
jira_fields_get_optionsGet options for select/dropdown fields
jira_fields_manage_optionsAdd, update, or reorder field options
jira_fields_create_contextCreate a context, optionally scoped to projects/issue types
jira_fields_update_contextRename or re-describe a context
jira_fields_delete_contextDelete a context and its options
jira_fields_assign_context_projectsScope a context to specific projects
jira_fields_remove_context_projectsUnscope projects from a context
jira_fields_add_context_issuetypesRestrict a context to specific issue types
jira_fields_remove_context_issuetypesRemove issue types from a context
jira_fields_get_project_mappingAudit which projects each context covers
Filters (10)
ToolDescription
jira_filters_searchSearch saved JQL filters
jira_filters_createCreate a new saved JQL filter
jira_filters_getGet a filter with owner + share permissions
jira_filters_updateUpdate name/JQL/description
jira_filters_deleteDelete a filter permanently
jira_filters_change_ownerChange a filter's owner
jira_filters_get_sharesList a filter's share permissions
jira_filters_add_shareAdd a share (requires you own the filter)
jira_filters_remove_shareRemove a share permission
jira_filters_force_add_shareAdd a share to a filter you don't own (owner-swap workaround)
Issue Links, Statuses (2)
ToolDescription
jira_issue_link_types_listList available link types (Blocks, Relates, etc.)
jira_statuses_searchSearch statuses across the instance
Workflows (8)
ToolDescription
jira_workflows_searchSearch workflows by name
jira_workflows_get_schemesList workflow schemes
jira_workflows_get_scheme_mappingsIssue type to workflow mappings
jira_workflows_get_scheme_project_usagesList projects using a scheme (shared-scheme safety check)
jira_workflows_set_scheme_issuetypeMap an issue type to a workflow
jira_workflows_delete_scheme_issuetypeRemove an issue type's workflow mapping
jira_workflows_create_scheme_draftCreate an editable draft of a scheme
jira_workflows_publish_scheme_draftPublish a scheme draft, making it live
Issue Types, Screens (6)
ToolDescription
jira_issuetypes_listList issue types (optionally by project)
jira_issuetypes_get_schemesList issue type schemes
jira_issuetypes_get_scheme_mappingsIssue types in a scheme
jira_screens_listList screens
jira_screens_get_fieldsGet fields on screen tabs
jira_screens_get_schemesList screen schemes
Bulk Operations, Tasks (4)
ToolDescription
jira_bulk_edit_issuesBulk edit fields on multiple issues
jira_bulk_transition_issuesBulk transition issues to new status
jira_tasks_get_statusPoll a generic task or bulk-queue task by ID
jira_tasks_cancelRequest cancellation of a generic async task

Design notes

  • Consolidate, don't wrap - 78 workflow-oriented tools rather than a 1:1 mirror of every REST endpoint.
  • Dry run - JIRA_DRY_RUN=true makes all write ops return simulated payloads.
  • Response filtering - strips self, _links, avatarUrls, and similar noise so the agent sees only useful fields.
  • Detail levels - read tools take detail="summary" (default) or detail="full".
  • ADF auto-wrap - plain text in comments/descriptions is auto-converted to Atlassian Document Format.
  • Transition resolution - jira_issues_transition resolves a status name to its transition ID automatically.
  • Actionable errors - error messages say what went wrong and what to try next.
  • Token-auth scope - webhook endpoints (/webhook) are intentionally not wrapped; Atlassian restricts them to Connect / OAuth 2.0 apps that token auth cannot satisfy.

Testing locally

Inspect and call tools interactively with the MCP Inspector:

npx @modelcontextprotocol/inspector uvx --from . jira-mcp

Run the unit tests (no network calls):

uv sync --extra dev
uv run pytest
uv run ruff check .

Security

  • Never commit credentials. .env is gitignored; use the env block in your client config or your OS secret manager.
  • Least privilege. The API token acts as your Jira user. Use an account scoped to only what you need, especially for write/admin tools.
  • Start in dry-run. JIRA_DRY_RUN=true lets you review every intended write before going live.
  • See the official MCP security best practices.

Contributing

Issues and PRs welcome. See CONTRIBUTING.md.

License

MIT

Keywords

ai-agent

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts