Jira MCP OAuth gateway (Wasim-Shaikh25/jira-mcp-auth) is an MCP server listed on the M8ven Trust Index. It scores 66 out of 100, grade C. It declares 17 tools. No publisher has claimed this listing.

C
Caution
66/100

Jira MCP OAuth gateway

MCP server that connects AI assistants to your Jira site, supporting PAT or SSO authentication for search, read, create, update, and delete operations on issues.

Caution. Specific findings reduced this grade. They are listed on the page. Grades reflect the full trust pyramid: code, verification depth, and reputation. New projects cap at C until adoption is earned.

How we verified

Code Verified⚡ Live Monitored: not connected

Verified is a snapshot. Live keeps it current, and builds your track record.

⚡ Connect GitHub → continuous verification on every pushwhy connect →

Who stands behind it

Wasim-Shaikh25

Source: Glama

Is this your MCP?

Claim it to get a verified publisher badge, a free copy of our full audit findings, and direct contact for any high-priority issues we find. Or connect your repo for our deepest verification, Live Monitored: read-only, revoke anytime. What we access →

Install from

The grade above is for the source repository. Registries can serve a different version, so we mark the ones we were not able to read.

// key findings
⚠️
Known vulnerabilities in dependencies: 2 high
Affects packages this MCP installs at runtime. Upgrade or remove the affected dependency.
No credential exfiltration, no sensitive file access, no obfuscation
Static analysis found nothing flowing your secrets to unexpected places.
🔐
You'll be asked for 4 credentials: CONFLUENCE_API_TOKEN, CONFLUENCE_MCP_SERVER_KEY, JIRA_API_TOKEN, JIRA_MCP_SERVER_KEY
These are read from process.env at runtime. Make sure you trust where they’ll be sent.
// tools this server exposes17 tools

These names and descriptions are the publisher's own, read from the source code. We print them as written. Our assessment is the findings above, not this list.

jira_login

SSO login in a browser (Playwright); saves cookies for REST. If IdP redirects or automation block a session, use JIRA_PAT + PREFER_SSO_COOKIES=0 in mcp.json or delete the reported cookie file. When JIRA_PAT is set, REST prefers it unless PREFER_SSO_COOKIES and cookies override.

execute_jql

Run a JQL search and return issues (summary fields).

get_ticket

Get full issue JSON from Jira. Uses JIRA_REST_API_PREFIX (e.g. /rest/api/2 or /rest/api/3). If you see 401, set JIRA_PAT or run jira_login once.

read_ticket

Read a ticket as a compact object (summary, plain-text description, status, assignee, etc.).

get_task

Same as get_ticket — returns full issue JSON (alias for task-type issues).

read_task

Same as read_ticket — compact issue view (alias for task-type issues).

get_only_ticket_name_and_description

Return only summary and plain-text description for an issue.

create_ticket

Create an issue in a project. **project** is optional if the destination is unambiguous: set **JIRA_DEFAULT_PROJECT** in MCP env, pass **boardName** or **boardId** (Jira Software Agile boards), or omit when your account sees exactly one project across boards—otherwise the tool fails with a clear err

edit_ticket

Update issue fields (summary, description, labels, parent).

delete_ticket

Delete an issue (requires permission).

list_projects

List Jira projects. Uses /project/search on REST v3; on REST v2 uses GET /project (v2 has no project search endpoint).

list_boards

List Jira Software boards (GET /rest/agile/1.0/board). Use names/ids with create_ticket when project is ambiguous. Returns 404 if Agile is disabled or your site has no Software boards—in that case pass **project** or **JIRA_DEFAULT_PROJECT**.

assign_ticket

Assign an issue by Atlassian account ID.

query_assignable

List users assignable for a project.

get_all_statuses

Return all issue statuses from Jira.

add_attachment_from_confluence

Download an attachment from Confluence (CONFLUENCE_BASE_URL + CONFLUENCE_PAT or SSO cookies) and upload it to a Jira issue.

add_attachment_from_public_url

Download a file from a public URL and attach it to a Jira issue.

// known CVEs in dependencies2 high

Disclosed vulnerabilities in this server's declared npm dependencies (via OSV). Whether each is reachable depends on the installed versions.

high@modelcontextprotocol/sdk@1.0.0GHSA-w48q-cv73-mx4w

Model Context Protocol (MCP) TypeScript SDK does not enable DNS rebinding protection by default

highplaywright@1.43.0GHSA-7mvr-c777-76hp

Playwright downloads and installs browsers without verifying the authenticity of the SSL certificate

Depend on this server? Get alerted when its CVEs change.Watch this server free →
// environment variables
To run this server yourself, you supply these values. They go in your own MCP client configuration and stay on your machine. The secret label means the value is sensitive, not that the server mishandles it.
🔐 secretCONFLUENCE_API_TOKENConfluence PAT; same “host config only” rule as Jira PATs.
configCONFLUENCE_BASE_URLPull a named attachment from a Confluence page (needs CONFLUENCE_BASE_URL and Confluence PAT or cookies) and attach it to a Jira issue.
🔐 secretCONFLUENCE_MCP_SERVER_KEYOptional; used to name the Confluence cookie file for add_attachment_from_confluence (cookies/cf-<key>.json) so it aligns with your Confluence MCP server id.
configCONFLUENCE_PATConfluence PAT; same “host config only” rule as Jira PATs.
🔐 secretJIRA_API_TOKENPAT or API token your site provides; sent as Authorization: Bearer. Read from the MCP host env (for example mcp.json), not from the project .env (ignored for these keys on purpose).
configJIRA_BASE_URL2. You set at least (and optionally JIRA_PAT) in that config’s env block.
configJIRA_DEFAULT_PROJECTCreate an issue (summary, description, issuetype; optional project, boardName, boardId, parent). If project is omitted, uses JIRA_DEFAULT_PROJECT, resolves from a board, or auto-picks when only one project appears on your boards—otherwise fails with a message listing boards (use list_boards).
configJIRA_DESCRIPTION_FORMATauto (default: plain string for v2, ADF for v3), adf, or plain — overrides description encoding if your site differs.
configJIRA_LOGIN_POLL_MSDuring jira_login, how often to probe /rest/api/.../myself so login can finish early (default 2000 ms).
configJIRA_LOGIN_URLLogin page URL (default {JIRA_BASE_URL}/login.jsp).
configJIRA_LOGIN_WAIT_SECONDS3. Complete login in the opened browser; wait until the tool finishes (up to , default 90).
configJIRA_MAX_ATTACHMENT_BYTESMax upload size in bytes (default 10 MiB).
🔐 secretJIRA_MCP_SERVER_KEYIf several MCP entries share the same path to src/index.js, set this to that entry’s id (e.g. jira-local) so merge/PAT discovery matches the right block.
configJIRA_PAT2. You set at least JIRA_BASE_URL (and optionally ) in that config’s env block.
configJIRA_REST_API_PREFIXREST base path (default /rest/api/3). Use /rest/api/2 if your server only exposes v2.
configPREFER_SSO_COOKIESDefault on: if an SSO cookie file exists, only cookies are sent (not PAT). Set 0 / false for PAT-first. Delete the cookie file or set this to 0 to force PAT.
// quality suggestions

Dependencies

3 runtime dependencies, 1 flagged: playwright

Tool annotations

No tools have read-only/destructive annotations

Add readOnlyHint or destructiveHint annotations to every tool so hosts can warn users before invoking.

All four hints declared on every tool

17/17 tools missing one or more hints — jira_login (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); execute_jql (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); get_ticket (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint), +14 more. OpenAI's directory rejects tools where any of the four hints are missing or non-boolean.

For every tool, set all four hints (readOnlyHint, destructiveHint, idempotentHint, openWorldHint) to explicit true/false values that match the handler’s actual behaviour.

License file

No license file

Add a LICENSE file (MIT, Apache-2.0, etc.).

Tool test coverage

Only 0/17 tools referenced in tests (0%)

Write tests that reference each tool by name so every tool has at least one test.

Production dependencies are patched

0 critical, 2 high severity in production deps — @modelcontextprotocol/sdk@1.0.0 (high), playwright@1.43.0 (high)

Run npm audit fix, or upgrade the affected packages to a non-vulnerable version.

Dependency freshness

1/3 production deps stale: node-fetch@2023-11-30 (2.8y)

Claim the listing to review these findings one by one and send us a correction where you disagree, straight to the team. Claiming also means we tell you when the grade moves, and reach you first if we find anything urgent.

// full audit trail
The findings above are the summary. The full trail, every check we ran, each deduction, the network hosts observed and the dependency advisories, goes to verified publishers, along with an alert whenever a new one lands. Verified publishers can also review each finding and dispute it in one click. Publisher corrections have sharpened several of our checks this month, because the maintainer knows the codebase better than any scanner.
// improvement guidance — verified publishers only
We have 5 concrete improvements we can share with the publisher of this MCP. Each comes with specific guidance to raise the trust score.
// embed badge in your README
[![M8ven Verified](https://m8ven.ai/badge/mcp/wasim-shaikh25/jira-mcp-auth?variant=verified)](https://m8ven.ai/mcp/wasim-shaikh25/jira-mcp-auth)
Shows verification status without the grade. Want the grade badge instead? Remove ?variant=verified from the URL.
commit: 5c2bcc1a51bcdd12dfb3983ee71b63ba6ece76f4
code hash: 8c6f01cd08f5cec27051ed5c4811de944123bc6b43e6c0faeaf7e8f09489577e
view raw JSON →
Check MCPs from inside your assistant
Tool Check · MCP

Vetting this one by hand? Tool Check is an MCP that scores other MCPs. Add it once and ask Claude, ChatGPT, or any MCP client to grade a server, surface CVEs, check the publisher, and suggest safer alternatives — before you install.

https://m8ven.ai/api/mcp/tool-check
check_toolsearch_toolscompare_toolsrecommend_alternativescheck_publisherreport_concern
How to add it →Free · no account needed · works in any MCP client