Server data from the Official MCP Registry
Jira MCP server with scoped API tokens via api.atlassian.com gateway
Jira MCP server with scoped API tokens via api.atlassian.com gateway
Valid MCP server (1 strong, 1 medium validity signals). 4 known CVEs in dependencies (0 critical, 3 high severity) Package registry verified. Imported from the Official MCP Registry.
5 files analyzed · 5 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_INSTANCE
Environment variable: JIRA_USER_EMAIL
Environment variable: JIRA_API_TOKEN
Environment variable: JIRA_SCOPES
Environment variable: JIRA_CLOUD_ID
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-deepwired-mcp-jira-scoped": {
"env": {
"JIRA_SCOPES": "your-jira-scopes-here",
"JIRA_CLOUD_ID": "your-jira-cloud-id-here",
"JIRA_INSTANCE": "your-jira-instance-here",
"JIRA_API_TOKEN": "your-jira-api-token-here",
"JIRA_USER_EMAIL": "your-jira-user-email-here"
},
"args": [
"-y",
"mcp-jira-scoped"
],
"command": "npx"
}
}
}From the project's GitHub README.
The only MCP server for Jira that works with Atlassian's scoped API tokens.
Every other Jira MCP server uses classic (unscoped) API tokens with basic auth against yoursite.atlassian.net. Atlassian is deprecating those. This server uses scoped tokens with the modern api.atlassian.com gateway — the way Atlassian intends these tokens to be used.
Once connected, you can ask your AI assistant things like:
| mcp-jira-scoped | Other Jira MCP servers | |
|---|---|---|
| Token type | Scoped (modern, ATATT prefix) | Classic (being deprecated) |
| Auth gateway | api.atlassian.com | yoursite.atlassian.net |
| Scope enforcement | Server-side, before every API call | None — relies on AI self-restraint |
| Default mode | Read-only (write must be explicitly granted) | Full access |
| Delete safety | Requires confirm: true parameter | No guard |
read:jira-work — read issues, search, comments, projectswrite:jira-work — create/update/delete issues, add commentsread:jira-user — look up usersread:me — read your own profileAdd to your .mcp.json:
{
"mcpServers": {
"jira": {
"command": "npx",
"args": ["-y", "mcp-jira-scoped"],
"env": {
"JIRA_INSTANCE": "yourcompany",
"JIRA_USER_EMAIL": "you@yourcompany.com",
"JIRA_API_TOKEN": "<your-scoped-token>",
"JIRA_SCOPES": "read:jira-work,write:jira-work"
}
}
}
}
Add the same config to Cursor's MCP settings (Settings > MCP Servers).
Add to .vscode/mcp.json:
{
"servers": {
"jira": {
"command": "npx",
"args": ["-y", "mcp-jira-scoped"],
"env": {
"JIRA_INSTANCE": "yourcompany",
"JIRA_USER_EMAIL": "you@yourcompany.com",
"JIRA_API_TOKEN": "<your-scoped-token>",
"JIRA_SCOPES": "read:jira-work,write:jira-work"
}
}
}
}
| Env Var | Required | Description |
|---|---|---|
JIRA_INSTANCE | Yes | Instance name (e.g. mycompany for mycompany.atlassian.net) |
JIRA_API_TOKEN | Yes | Scoped API token (ATATT... prefix) |
JIRA_USER_EMAIL | Yes | Email associated with the token |
JIRA_SCOPES | No | Comma-separated scopes. Defaults to read:jira-work (read-only) |
JIRA_CLOUD_ID | No | Atlassian Cloud ID. Auto-fetched if not set. Find it at https://yoursite.atlassian.net/_edge/tenant_info |
read:jira-work)| Tool | Description |
|---|---|
jira_get_issue | Get issue by key. Pass includeCustomFields: true to return all custom fields |
jira_search | Search issues via JQL with pagination |
jira_list_comments | List comments on an issue |
jira_list_projects | List accessible projects |
jira_get_project | Get project details by key |
jira_list_link_types | List available issue link types |
jira_list_fields | List all fields (system + custom) — discover customfield_* IDs |
jira_list_attachments | List attachments on an issue with filename, size, MIME type, and download URL |
jira_get_transitions | Get available transitions for an issue with required screen fields expanded |
write:jira-work)| Tool | Description |
|---|---|
jira_create_issue | Create an issue (task, bug, story, epic). Supports custom fields |
jira_update_issue | Update fields on an issue. Supports custom fields |
jira_add_comment | Add a comment (plain text auto-converted to ADF) |
jira_transition_issue | Move an issue to a new status. Accepts fields and comment for transition screens |
jira_delete_issue | Delete an issue (requires confirm: true safety guard) |
jira_link_issues | Link two issues (blocks, relates, split, clone, etc.) |
jira_add_attachment | Upload a local file as an attachment to an issue |
jira_delete_attachment | Delete an attachment by ID (requires confirm: true safety guard) |
read:jira-user)| Tool | Description |
|---|---|
jira_get_user | Get user info by account ID |
jira_search_users | Search users by name or email |
JIRA_SCOPES is not set, only read tools are even registered.jira_delete_issue requires confirm: true.sanitizeError.You're probably using a scoped token against the old yoursite.atlassian.net URL. Scoped tokens (ATATT... prefix) only work via api.atlassian.com. This server handles this automatically — make sure you're using mcp-jira-scoped, not another Jira MCP server.
You're sending a scoped token as a Bearer token. Scoped tokens use Basic auth (email:token) via the api.atlassian.com gateway. Again, this server handles it — this error means you're using a different server.
There are two layers of scope enforcement:
JIRA_SCOPES env var) — control what tools this MCP server makes available. These can only be more restrictive, never less.If you get a 403 from Atlassian, check that your token has the required scope. If you get a scope enforcement error from the MCP server, check your JIRA_SCOPES env var.
Jira projects often have required custom fields (e.g. "Work Category", "Story Point Estimate"). Use the customFields parameter on jira_create_issue and jira_update_issue:
Create an issue in PROJ with summary "Fix login bug" and set customfield_10016 to 3
The AI will pass {"customFields": {"customfield_10016": 3}}. To find custom field IDs, check your Jira project's field configuration.
The server auto-fetches your Cloud ID from https://yourinstance.atlassian.net/_edge/tenant_info. If this fails (e.g. corporate firewall), set JIRA_CLOUD_ID manually.
See Prioritised-TodoList.md for the full feature checklist — what's built, what's next, and where contributions are welcome. Key areas open for contribution:
git clone https://github.com/deepwired/mcp-jira.git
cd mcp-jira
npm install
npm run build
npm test
See CONTRIBUTING.md for details on adding tools and submitting PRs.
The GitHub repo is mcp-jira but the npm package is mcp-jira-scoped. We plan to unify under mcp-jira in a future release. For now, use npx -y mcp-jira-scoped to run the server.
Apache 2.0 — see LICENSE.
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
by mcp-marketplace · Developer Tools
Scaffold, build, and publish TypeScript MCP servers to npm — conversationally
by mcp-marketplace · Finance
Free stock data and market news for any MCP-compatible AI assistant.
by Taylorwilsdon · Productivity
Control Gmail, Calendar, Docs, Sheets, Drive, and more from your AI