940 B
940 B
Jira Vein
Jira connector for Pawprint Artery.
Authentication
Two ways to provide Jira credentials:
1. Web UI (Headers)
Enter credentials in the web form at https://artery.mcrn.ar
- Credentials sent as
X-Jira-EmailandX-Jira-Tokenheaders - Use for demos, testing, or when credentials change frequently
2. Local .env file (Fallback)
Create .env (not committed to git):
cp .env.example .env
# Edit .env with your credentials
The system tries headers first, then falls back to .env.
Getting a Jira API Token
- Go to https://id.atlassian.com/manage-profile/security/api-tokens
- Click "Create API token"
- Copy the token (starts with
ATATT3x) - Use in UI or add to
.env
Endpoints
GET /jira/health- Connection testGET /jira/mine- My assigned ticketsGET /jira/ticket/{key}- Ticket detailsPOST /jira/search- Raw JQL search
Add ?text=true for LLM-friendly output.