Some checks failed
CI / Check / macos-latest (push) Has been cancelled
CI / Check / ubuntu-latest (push) Has been cancelled
CI / Check / windows-latest (push) Has been cancelled
CI / Test / macos-latest (push) Has been cancelled
CI / Test / ubuntu-latest (push) Has been cancelled
CI / Test / windows-latest (push) Has been cancelled
CI / Clippy (push) Has been cancelled
CI / Format (push) Has been cancelled
CI / Security Audit (push) Has been cancelled
CI / Secrets Scan (push) Has been cancelled
CI / Install Script Smoke Test (push) Has been cancelled
43 lines
1.2 KiB
TOML
43 lines
1.2 KiB
TOML
id = "jira"
|
|
name = "Jira"
|
|
description = "Access Jira issues, projects, boards, and sprints through the Atlassian MCP server"
|
|
category = "devtools"
|
|
icon = "📋"
|
|
tags = ["project-management", "issues", "agile", "atlassian", "tracking"]
|
|
|
|
[transport]
|
|
type = "stdio"
|
|
command = "npx"
|
|
args = ["@modelcontextprotocol/server-atlassian"]
|
|
|
|
[[required_env]]
|
|
name = "JIRA_API_TOKEN"
|
|
label = "Jira API Token"
|
|
help = "An API token generated from your Atlassian account"
|
|
is_secret = true
|
|
get_url = "https://id.atlassian.com/manage-profile/security/api-tokens"
|
|
|
|
[[required_env]]
|
|
name = "JIRA_INSTANCE_URL"
|
|
label = "Jira Instance URL"
|
|
help = "Your Jira Cloud instance URL (e.g., https://yourcompany.atlassian.net)"
|
|
is_secret = false
|
|
get_url = ""
|
|
|
|
[[required_env]]
|
|
name = "JIRA_USER_EMAIL"
|
|
label = "Jira User Email"
|
|
help = "The email address associated with your Atlassian account"
|
|
is_secret = false
|
|
get_url = ""
|
|
|
|
[health_check]
|
|
interval_secs = 60
|
|
unhealthy_threshold = 3
|
|
|
|
setup_instructions = """
|
|
1. Go to https://id.atlassian.com/manage-profile/security/api-tokens and create a new API token.
|
|
2. Enter your Jira Cloud instance URL (e.g., https://yourcompany.atlassian.net) and the email linked to your Atlassian account.
|
|
3. Paste the API token into the JIRA_API_TOKEN field above.
|
|
"""
|