Server data from the Official MCP Registry
MCP server for Jira — search, create, update, transition issues, manage projects, boards, and spr...
MCP server for Jira — search, create, update, transition issues, manage projects, boards, and spr...
This Jira MCP server is well-structured with proper authentication mechanisms and appropriate permissions for its business purpose. The code implements both Basic and Bearer token authentication securely via environment variables, with proper validation on startup. No malicious patterns, hardcoded credentials, or dangerous operations were detected. Minor code quality observations exist but do not materially impact security. Supply chain analysis found 3 known vulnerabilities in dependencies (0 critical, 3 high severity). Package verification found 1 issue (1 critical, 0 high severity).
3 files analyzed · 8 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Unverified package source
We couldn't verify that the installable package matches the reviewed source code. Proceed with caution.
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-friendlygeorge-jira-mcp-server": {
"args": [
"-y",
"jira-mcp-server"
],
"command": "npx"
}
}
}From the project's GitHub README.
A Model Context Protocol server for Jira integration. Provides 14 tools for searching, creating, updating, and transitioning issues, plus managing projects, boards, sprints, and links.
Add to your claude_desktop_config.json:
{
"mcpServers": {
"jira": {
"command": "npx",
"args": ["-y", "jira-mcp-server"],
"env": {
"JIRA_HOST": "your-domain.atlassian.net",
"JIRA_EMAIL": "you@example.com",
"JIRA_API_TOKEN": "your-api-token"
}
}
}
}
Add to your MCP configuration:
{
"mcpServers": {
"jira": {
"command": "npx",
"args": ["-y", "jira-mcp-server"],
"env": {
"JIRA_HOST": "your-domain.atlassian.net",
"JIRA_EMAIL": "you@example.com",
"JIRA_API_TOKEN": "your-api-token"
}
}
}
}
npm install -g jira-mcp-server
export JIRA_HOST=your-domain.atlassian.net
export JIRA_EMAIL=you@example.com
export JIRA_API_TOKEN=your-api-token
jira-mcp-server
| Variable | Required | Description |
|---|---|---|
JIRA_HOST | Yes | Your Jira hostname (e.g. your-domain.atlassian.net) |
JIRA_API_TOKEN | Yes | Jira API token or Personal Access Token |
JIRA_EMAIL | Cond. | Your Jira email (required for Basic auth) |
JIRA_AUTH_TYPE | No | basic (default) or bearer (for PAT) |
JIRA_API_VERSION | No | REST API version (default: 3) |
| Tool | Description |
|---|---|
jira_search | Search issues with JQL |
jira_get_issue | Get full issue details |
jira_create_issue | Create a new issue |
jira_update_issue | Update issue fields |
jira_transition_issue | Transition issue to new status |
jira_add_comment | Add a comment to an issue |
jira_delete_issue | Delete an issue (permanent) |
jira_list_projects | List accessible projects |
jira_get_project | Get project details |
jira_get_issue_types | List issue types for a project |
jira_link_issues | Create a link between two issues |
jira_get_boards | List Jira Software boards |
jira_get_sprints | List sprints for a board |
jira_get_backlog | Get board backlog items |
{ "tool": "jira_search", "arguments": { "jql": "project = PROJ AND status = Open ORDER BY created DESC" } }
{
"tool": "jira_create_issue",
"arguments": {
"projectKey": "PROJ",
"summary": "Login page broken on mobile",
"issueType": "Bug",
"priority": "High",
"labels": "mobile,urgent"
}
}
{ "tool": "jira_transition_issue", "arguments": { "issueKey": "PROJ-123", "transitionName": "In Progress" } }
| Resource | Tools |
|---|---|
| Issues | jira_search, jira_get_issue, jira_create_issue, jira_update_issue, jira_transition_issue, jira_delete_issue |
| Comments | jira_add_comment |
| Projects | jira_list_projects, jira_get_project |
| Issue Types | jira_get_issue_types |
| Links | jira_link_issues |
| Boards | jira_get_boards |
| Sprints | jira_get_sprints |
| Backlog | jira_get_backlog |
git clone https://github.com/friendlygeorge/jira-mcp-server.git
cd jira-mcp-server
npm install
npm run build
npm start
MIT
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