CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Mcp Jira Scoped

deepwired/mcp-jira
2authSTDIOregistry active
Summary

Connects to Jira through Atlassian's modern api.atlassian.com gateway using scoped API tokens (the ATATT prefix kind) instead of the classic tokens that are being phased out. Exposes 14 tools covering reads (get issue, JQL search, list comments, fetch transitions), writes (create/update/delete issues, add comments, move through workflows, link issues), and attachments. Default mode is read-only unless you explicitly grant write:jira-work scope. Delete operations require a confirm parameter as a safety guard. Scope enforcement happens server-side before API calls go out, so the AI can't accidentally exceed the permissions you've granted. Useful if you're already on scoped tokens or want proper scope boundaries between read and write operations.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

mcp-jira-scoped

npm version License Node TypeScript

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.

What You Can Do

Once connected, you can ask your AI assistant things like:

  • "What's the status of PROJ-1234?"
  • "Search for all open bugs assigned to me in the BACKEND project"
  • "Create a story in PROJ for the database migration, priority P2, under epic PROJ-100"
  • "Move PROJ-1234 to In Progress"
  • "Add a comment to PROJ-1234 saying the fix is deployed to staging"
  • "Link PROJ-1234 as blocking PROJ-5678"
  • "Find all issues with 'auth' in the summary updated this week"

Why This Server

mcp-jira-scopedOther Jira MCP servers
Token typeScoped (modern, ATATT prefix)Classic (being deprecated)
Auth gatewayapi.atlassian.comyoursite.atlassian.net
Scope enforcementServer-side, before every API callNone — relies on AI self-restraint
Default modeRead-only (write must be explicitly granted)Full access
Delete safetyRequires confirm: true parameterNo guard

Quick Start

1. Create a Scoped API Token

  1. Go to Atlassian API Tokens
  2. Click "Create API token with scopes"
  3. Grant the scopes you need:
    • read:jira-work — read issues, search, comments, projects
    • write:jira-work — create/update/delete issues, add comments
    • read:jira-user — look up users
    • read:me — read your own profile

2. Add to Your AI Client

Claude Desktop / Claude Code

Add 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"
      }
    }
  }
}

Cursor

Add the same config to Cursor's MCP settings (Settings > MCP Servers).

VS Code (Copilot)

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"
      }
    }
  }
}

Configuration

Env VarRequiredDescription
JIRA_INSTANCEYesInstance name (e.g. mycompany for mycompany.atlassian.net)
JIRA_API_TOKENYesScoped API token (ATATT... prefix)
JIRA_USER_EMAILYesEmail associated with the token
JIRA_SCOPESNoComma-separated scopes. Defaults to read:jira-work (read-only)
JIRA_CLOUD_IDNoAtlassian Cloud ID. Auto-fetched if not set. Find it at https://yoursite.atlassian.net/_edge/tenant_info

Available Tools (14)

Read Tools (read:jira-work)

ToolDescription
jira_get_issueGet issue by key. Pass includeCustomFields: true to return all custom fields
jira_searchSearch issues via JQL with pagination
jira_list_commentsList comments on an issue
jira_list_projectsList accessible projects
jira_get_projectGet project details by key
jira_list_link_typesList available issue link types
jira_list_fieldsList all fields (system + custom) — discover customfield_* IDs
jira_list_attachmentsList attachments on an issue with filename, size, MIME type, and download URL
jira_get_transitionsGet available transitions for an issue with required screen fields expanded

Write Tools (write:jira-work)

ToolDescription
jira_create_issueCreate an issue (task, bug, story, epic). Supports custom fields
jira_update_issueUpdate fields on an issue. Supports custom fields
jira_add_commentAdd a comment (plain text auto-converted to ADF)
jira_transition_issueMove an issue to a new status. Accepts fields and comment for transition screens
jira_delete_issueDelete an issue (requires confirm: true safety guard)
jira_link_issuesLink two issues (blocks, relates, split, clone, etc.)
jira_add_attachmentUpload a local file as an attachment to an issue
jira_delete_attachmentDelete an attachment by ID (requires confirm: true safety guard)

User Tools (read:jira-user)

ToolDescription
jira_get_userGet user info by account ID
jira_search_usersSearch users by name or email

Safety

  1. Scope enforcement — tools are blocked server-side if their required scope isn't granted. The API call never happens.
  2. Read-only default — if JIRA_SCOPES is not set, only read tools are even registered.
  3. Delete confirmation — jira_delete_issue requires confirm: true.
  4. No token logging — tokens are redacted from all error messages via sanitizeError.
  5. No admin operations — no project creation/deletion, workflow changes, or webhook management. Ever.

Troubleshooting

"Client must be authenticated" (401)

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.

"Failed to parse Connect Session Auth Token" (403)

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.

Token scopes vs server scopes

There are two layers of scope enforcement:

  1. Atlassian's scopes — set when you create the token. These control what Atlassian's API allows.
  2. Server scopes (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.

Custom fields

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.

Cloud ID

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.

Roadmap

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:

  • Issue tools — assign shortcut, create/transition metadata discovery
  • Comments — edit and delete
  • Watchers & Worklogs — full CRUD
  • Boards & Sprints — Agile workflow support
  • Attachments — list, download, upload

Development

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.

Note on Package Naming

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.

License

Apache 2.0 — see LICENSE.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

JIRA_INSTANCE*

Jira instance name (e.g. 'mycompany' for mycompany.atlassian.net)

JIRA_USER_EMAIL*

Email associated with the API token

JIRA_API_TOKEN*secret

Scoped API token from https://id.atlassian.com/manage-profile/security/api-tokens

JIRA_SCOPES

Comma-separated scopes: read:jira-work, write:jira-work, read:jira-user, read:me. Defaults to read:jira-work

JIRA_CLOUD_ID

Atlassian Cloud ID (auto-fetched if not set). Find at https://yoursite.atlassian.net/_edge/tenant_info

Categories
Developer Tools
Registryactive
Packagemcp-jira-scoped
TransportSTDIO
AuthRequired
UpdatedMar 28, 2026
View on GitHub

Related Developer Tools MCP Servers

View all →
Git Mcp Server

ray0907/git-mcp-server

MCP server for GitLab and GitHub
Git Mcp Server

cyanheads/git-mcp-server

Comprehensive Git MCP server enabling native git tools including clone, commit, worktree, & more.
221
Atlassian Dc Mcp Bitbucket

io.github.b1ff/atlassian-dc-mcp-bitbucket

MCP server for Atlassian Bitbucket Data Center - interact with repositories and code
77
Atlassian Dc Mcp Jira

io.github.b1ff/atlassian-dc-mcp-jira

MCP server for Atlassian Jira Data Center - search, view, and create issues
77
Atlassian Jira

com.mcparmory/atlassian-jira

Create, search, and manage issues, projects, and team workflows
25
Vscode Terminal Mcp

sirlordt/vscode-terminal-mcp

Execute commands in visible VSCode terminal tabs with output capture and session reuse.
1