Jira Admin MCP Server
Enables an AI assistant to administer a Jira Cloud site with 78 purpose-built tools for behind-the-scenes admin work like custom fields, permission schemes, workflows, screens, issue-type schemes, groups, project roles, saved filters, and bulk operations.
README
Jira Admin MCP Server
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
You need three things from your own Jira: a base URL, your account email, and an API token (create one here). The token inherits your Jira permissions, so for admin tasks use an account with the right access.
The easiest way to run an MCP server today is uv / uvx - it handles Python and dependencies for you, no manual virtualenv. Install uv first, then pick one of the options below.
Option A - run straight from GitHub (no clone needed)
Add this to your MCP client config (see client setup for file locations):
{
"mcpServers": {
"jira-admin": {
"command": "uvx",
"args": ["--from", "git+https://github.com/its-qusai-nasr/jira-admin-mcp", "jira-mcp"],
"env": {
"JIRA_BASE_URL": "https://your-company.atlassian.net",
"JIRA_EMAIL": "you@your-company.com",
"JIRA_API_TOKEN": "your_api_token_here"
}
}
}
}
Option B - 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
With a cloned checkout, point your client at it:
{
"mcpServers": {
"jira-admin": {
"command": "uv",
"args": ["run", "--directory", "/absolute/path/to/jira-admin-mcp", "jira-mcp"]
}
}
}
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).
| 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.
Client setup
Add the JSON block from the Quick start to your client's MCP config:
- Claude Desktop -
claude_desktop_config.json- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
- macOS:
- Claude Code - a
.mcp.jsonfile at your project root (orclaude mcp add) - Cursor -
~/.cursor/mcp.json(global) or.cursor/mcp.json(per project) - VS Code -
.vscode/mcp.json(uses a top-level"servers"key instead of"mcpServers")
Restart the client after editing the config. The server appears as jira-admin with all 78 tools.
What you can ask for
Once connected, the assistant can do things like:
- "Add
alice@example.comto thejira-developersgroup." - "Scope the
Teamcustom 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 Taskin project OPS to theTasktype, 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)
<details> <summary><b>Issues (12)</b></summary>
| 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 |
| </details> |
<details> <summary><b>Comments (2)</b></summary>
| Tool | Description |
|---|---|
jira_comments_list |
List comments on an issue |
jira_comments_add |
Add comment (plain text auto-converted to ADF) |
| </details> |
<details> <summary><b>Users (2)</b></summary>
| Tool | Description |
|---|---|
jira_users_search |
Search by email or display name |
jira_users_get |
Get user details + groups by account ID |
| </details> |
<details> <summary><b>Groups (6)</b></summary>
| 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 |
| </details> |
<details> <summary><b>Projects (10)</b></summary>
| 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 |
| </details> |
<details> <summary><b>Permissions (4)</b></summary>
| 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 |
| </details> |
<details> <summary><b>Custom Fields (12)</b></summary>
| 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 |
| </details> |
<details> <summary><b>Filters (10)</b></summary>
| 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) |
| </details> |
<details> <summary><b>Issue Links, Statuses (2)</b></summary>
| Tool | Description |
|---|---|
jira_issue_link_types_list |
List available link types (Blocks, Relates, etc.) |
jira_statuses_search |
Search statuses across the instance |
| </details> |
<details> <summary><b>Workflows (8)</b></summary>
| 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 |
| </details> |
<details> <summary><b>Issue Types, Screens (6)</b></summary>
| 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 |
| </details> |
<details> <summary><b>Bulk Operations, Tasks (4)</b></summary>
| 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 |
| </details> |
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=truemakes 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) ordetail="full". - ADF auto-wrap - plain text in comments/descriptions is auto-converted to Atlassian Document Format.
- Transition resolution -
jira_issues_transitionresolves 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.
.envis gitignored; use theenvblock 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=truelets you review every intended write before going live. - See the official MCP security best practices.
Contributing
Issues and PRs welcome. See CONTRIBUTING.md.
License
<!-- mcp-name: io.github.its-qusai-nasr/jira-admin-mcp -->
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。