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.
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
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
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.
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_loginSSO 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_jqlRun a JQL search and return issues (summary fields).
get_ticketGet 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_ticketRead a ticket as a compact object (summary, plain-text description, status, assignee, etc.).
get_taskSame as get_ticket — returns full issue JSON (alias for task-type issues).
read_taskSame as read_ticket — compact issue view (alias for task-type issues).
get_only_ticket_name_and_descriptionReturn only summary and plain-text description for an issue.
create_ticketCreate 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_ticketUpdate issue fields (summary, description, labels, parent).
delete_ticketDelete an issue (requires permission).
list_projectsList Jira projects. Uses /project/search on REST v3; on REST v2 uses GET /project (v2 has no project search endpoint).
list_boardsList 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_ticketAssign an issue by Atlassian account ID.
query_assignableList users assignable for a project.
get_all_statusesReturn all issue statuses from Jira.
add_attachment_from_confluenceDownload an attachment from Confluence (CONFLUENCE_BASE_URL + CONFLUENCE_PAT or SSO cookies) and upload it to a Jira issue.
add_attachment_from_public_urlDownload a file from a public URL and attach it to a Jira issue.
Disclosed vulnerabilities in this server's declared npm dependencies (via OSV). Whether each is reachable depends on the installed versions.
Model Context Protocol (MCP) TypeScript SDK does not enable DNS rebinding protection by default
Playwright downloads and installs browsers without verifying the authenticity of the SSL certificate
CONFLUENCE_API_TOKENConfluence PAT; same “host config only” rule as Jira PATs.CONFLUENCE_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.CONFLUENCE_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.CONFLUENCE_PATConfluence PAT; same “host config only” rule as Jira PATs.JIRA_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).JIRA_BASE_URL2. You set at least (and optionally JIRA_PAT) in that config’s env block.JIRA_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).JIRA_DESCRIPTION_FORMATauto (default: plain string for v2, ADF for v3), adf, or plain — overrides description encoding if your site differs.JIRA_LOGIN_POLL_MSDuring jira_login, how often to probe /rest/api/.../myself so login can finish early (default 2000 ms).JIRA_LOGIN_URLLogin page URL (default {JIRA_BASE_URL}/login.jsp).JIRA_LOGIN_WAIT_SECONDS3. Complete login in the opened browser; wait until the tool finishes (up to , default 90).JIRA_MAX_ATTACHMENT_BYTESMax upload size in bytes (default 10 MiB).JIRA_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.JIRA_PAT2. You set at least JIRA_BASE_URL (and optionally ) in that config’s env block.JIRA_REST_API_PREFIXREST base path (default /rest/api/3). Use /rest/api/2 if your server only exposes v2.PREFER_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.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.
[](https://m8ven.ai/mcp/wasim-shaikh25/jira-mcp-auth)?variant=verified from the URL.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