jtk
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| JIRA_EMAIL | Yes | Email for the API token | |
| JIRA_DOMAIN | Yes | Atlassian domain (e.g., acme for acme.atlassian.net) | |
| JIRA_API_TOKEN | Yes | Atlassian API token | |
| JIRA_TOKEN_TYPE | No | classic or scoped (auto-detected if omitted) | |
| JIRA_DISABLED_TOOLS | No | Comma-separated tool names to hide |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| logging | {} |
| prompts | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| manage_attachmentsB | Manage Jira issue attachments (list, download, upload, delete). Actions: 'list', 'download', 'upload', 'delete' |
| manage_boardsB | Manage Jira agile boards and sprints. Actions: 'list_boards', 'get_board', 'list_sprints', 'get_sprint_issues', 'get_backlog', 'get_active_sprint', 'search_sprints', 'create_sprint', 'move_to_sprint' |
| manage_devinfoC | Get development information (branches, PRs, commits) linked to a Jira issue. Actions: 'get_dev_info' |
| manage_issuesC | Unified tool for Jira issue operations. Actions: 'get', 'list_types', 'get_links', 'get_history', 'create', 'update', 'assign', 'transition', 'add_comment', 'edit_comment', 'list_comments', 'delete', 'link', 'list_link_types', 'get_watchers', 'add_watcher', 'remove_watcher', 'move' |
| manage_metricsA | Get issue lifecycle metrics for dashboards and visualizations. Actions: 'get_dates' (raw date info, status transitions, time-in-status), 'get_metrics' (computed cycle time, lead time, time in current status, status breakdown) |
| manage_projectsB | List and get Jira project details and statuses. Actions: 'list', 'get', 'list_statuses', 'create' |
| manage_searchA | Search Jira issues using JQL or quick text search. Actions: 'jql', 'quick' |
| manage_usersC | Search and get Jira users. Actions: 'get_current', 'search', 'get' |
| manage_versionsC | List and get project versions (releases/fixVersions). Actions: 'list', 'get' |
| manage_worklogsB | Manage time tracking worklogs on Jira issues. Actions: 'list', 'add' |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| dev_tree | Analyze development work (branches, PRs, commits) for an issue and its subtasks |
| release_notes | Generate release notes from a Jira version/release |
| sprint_status | Get current sprint status and progress |
| standup_report | Generate a standup report from recent Jira activity |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 10 tools
Each tool is scoped to a distinct Jira domain (issues, projects, users, boards, worklogs, attachments, etc.), so the boundaries are clear. The only potential overlap is between searching within manage_search and listing within other tools, but the resource-specific naming prevents real ambiguity.
All tools follow a consistent manage_<plural_noun> convention, and each tool exposes lowercase verb-style actions. This creates a predictable pattern that makes it easy to infer what each tool does.
Ten tools is well-scoped for a Jira server. The count is large enough to cover distinct functional areas without becoming unwieldy, and the grouping of many actions under manage_issues keeps the surface organized.
Core Jira workflows are well covered: issues, projects, search, comments, attachments, worklogs, users, boards, sprints, and dev info. Minor gaps exist in version and worklog management (no create/update/delete for versions, no edit/delete for worklogs), but these are edge operations rather than critical missing workflows.