Server data from the Official MCP Registry
78 tools to administer Jira Cloud: issues, fields, workflows, permissions, projects, bulk ops.
78 tools to administer Jira Cloud: issues, fields, workflows, permissions, projects, bulk ops.
Valid MCP server (1 strong, 3 medium validity signals). 6 known CVEs in dependencies (1 critical, 3 high severity) Package registry verified. Imported from the Official MCP Registry.
4 files analyzed · 7 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
Set these up before or after installing:
Environment variable: JIRA_BASE_URL
Environment variable: JIRA_EMAIL
Environment variable: JIRA_API_TOKEN
Environment variable: JIRA_DRY_RUN
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-its-qusai-nasr-jira-admin-mcp": {
"env": {
"JIRA_EMAIL": "your-jira-email-here",
"JIRA_DRY_RUN": "your-jira-dry-run-here",
"JIRA_BASE_URL": "your-jira-base-url-here",
"JIRA_API_TOKEN": "your-jira-api-token-here"
},
"args": [
"jira-admin-mcp"
],
"command": "uvx"
}
}
}From the project's GitHub README.
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.
Two prerequisites, both one-time and quick:
uv installed (one line; it manages Python and dependencies for you, no virtualenv).Then add the server with the one-click button or one-line command for your tool, and fill in your three JIRA_* values.
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.
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.
After installing, set your JIRA_* values on the jira-admin entry in .vscode/mcp.json (or your user mcp.json).
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
maininstead 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.
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
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).
| Variable | Required | Description |
|---|---|---|
JIRA_BASE_URL | yes | Your Jira Cloud base URL, e.g. https://your-company.atlassian.net |
JIRA_EMAIL | yes | The Atlassian account email that owns the API token |
JIRA_API_TOKEN | yes | API token from https://id.atlassian.com/manage-profile/security/api-tokens |
JIRA_DRY_RUN | no | true 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=truefor 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.
Once connected, the assistant can do things like:
alice@example.com to the jira-developers group."Team custom field to projects ENG and OPS only, for the Story and Bug issue types."Internal Task in project OPS to the Task type, then transition the open ones to In Progress."| Tool | Description |
|---|---|
jira_issues_search | Search issues using JQL with pagination |
jira_issues_get | Get single issue by key (summary or full detail) |
jira_issues_create | Create issue with project, type, fields |
jira_issues_update | Update fields on existing issue |
jira_issues_transition | Transition to new status (auto-resolves transition ID) |
jira_issues_assign | Assign/unassign issue |
jira_issues_get_transitions | List available workflow transitions |
jira_issues_get_createmeta | Get required fields for creating issues |
jira_issues_delete | Delete an issue permanently |
jira_issues_link | Create a link between two issues |
jira_issues_get_changelog | Get audit history (who changed what) |
jira_issues_bulk_create | Bulk create up to 50 issues |
| Tool | Description |
|---|---|
jira_comments_list | List comments on an issue |
jira_comments_add | Add comment (plain text auto-converted to ADF) |
| Tool | Description |
|---|---|
jira_users_search | Search by email or display name |
jira_users_get | Get user details + groups by account ID |
| Tool | Description |
|---|---|
jira_groups_list | List groups with member counts |
jira_groups_get_members | Get members of a group |
jira_groups_add_user | Add user to group |
jira_groups_remove_user | Remove user from group |
jira_groups_create | Create a new group |
jira_groups_delete | Delete a group |
| Tool | Description |
|---|---|
jira_projects_list | List projects filtered by name/key |
jira_projects_get | Get project details + issue types |
jira_projects_get_statuses | All statuses grouped by issue type |
jira_projects_get_roles | Roles with actors (users/groups) |
jira_projects_update_role | Add/remove actors from project roles |
jira_projects_get_versions | List versions/releases in a project |
jira_projects_create_version | Create a new version/release |
jira_projects_get_features | Get enabled/disabled features |
jira_projects_get_notification_scheme | Get notification scheme |
jira_projects_get_categories | List project categories |
| Tool | Description |
|---|---|
jira_permissions_list_schemes | List all permission schemes |
jira_permissions_get_scheme | Get scheme with all grants |
jira_permissions_add_grant | Add permission grant to scheme |
jira_permissions_assign_scheme | Assign scheme to project |
| Tool | Description |
|---|---|
jira_fields_search | Search fields by name, find field IDs |
jira_fields_get_contexts | Get contexts for a custom field |
jira_fields_get_options | Get options for select/dropdown fields |
jira_fields_manage_options | Add, update, or reorder field options |
jira_fields_create_context | Create a context, optionally scoped to projects/issue types |
jira_fields_update_context | Rename or re-describe a context |
jira_fields_delete_context | Delete a context and its options |
jira_fields_assign_context_projects | Scope a context to specific projects |
jira_fields_remove_context_projects | Unscope projects from a context |
jira_fields_add_context_issuetypes | Restrict a context to specific issue types |
jira_fields_remove_context_issuetypes | Remove issue types from a context |
jira_fields_get_project_mapping | Audit which projects each context covers |
| Tool | Description |
|---|---|
jira_filters_search | Search saved JQL filters |
jira_filters_create | Create a new saved JQL filter |
jira_filters_get | Get a filter with owner + share permissions |
jira_filters_update | Update name/JQL/description |
jira_filters_delete | Delete a filter permanently |
jira_filters_change_owner | Change a filter's owner |
jira_filters_get_shares | List a filter's share permissions |
jira_filters_add_share | Add a share (requires you own the filter) |
jira_filters_remove_share | Remove a share permission |
jira_filters_force_add_share | Add a share to a filter you don't own (owner-swap workaround) |
| Tool | Description |
|---|---|
jira_issue_link_types_list | List available link types (Blocks, Relates, etc.) |
jira_statuses_search | Search statuses across the instance |
| Tool | Description |
|---|---|
jira_workflows_search | Search workflows by name |
jira_workflows_get_schemes | List workflow schemes |
jira_workflows_get_scheme_mappings | Issue type to workflow mappings |
jira_workflows_get_scheme_project_usages | List projects using a scheme (shared-scheme safety check) |
jira_workflows_set_scheme_issuetype | Map an issue type to a workflow |
jira_workflows_delete_scheme_issuetype | Remove an issue type's workflow mapping |
jira_workflows_create_scheme_draft | Create an editable draft of a scheme |
jira_workflows_publish_scheme_draft | Publish a scheme draft, making it live |
| Tool | Description |
|---|---|
jira_issuetypes_list | List issue types (optionally by project) |
jira_issuetypes_get_schemes | List issue type schemes |
jira_issuetypes_get_scheme_mappings | Issue types in a scheme |
jira_screens_list | List screens |
jira_screens_get_fields | Get fields on screen tabs |
jira_screens_get_schemes | List screen schemes |
| Tool | Description |
|---|---|
jira_bulk_edit_issues | Bulk edit fields on multiple issues |
jira_bulk_transition_issues | Bulk transition issues to new status |
jira_tasks_get_status | Poll a generic task or bulk-queue task by ID |
jira_tasks_cancel | Request cancellation of a generic async task |
JIRA_DRY_RUN=true makes all write ops return simulated payloads.self, _links, avatarUrls, and similar noise so the agent sees only useful fields.detail="summary" (default) or detail="full".jira_issues_transition resolves a status name to its transition ID automatically./webhook) are intentionally not wrapped; Atlassian restricts them to Connect / OAuth 2.0 apps that token auth cannot satisfy.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 .
.env is gitignored; use the env block in your client config or your OS secret manager.JIRA_DRY_RUN=true lets you review every intended write before going live.Issues and PRs welcome. See CONTRIBUTING.md.
Be the first to review this server!
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.
by Microsoft · Content & Media
Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption