DevOps MCP Hub
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| JIRA_EMAIL | Yes | Your Jira email address | |
| GITHUB_TOKEN | No | Your GitHub personal access token (optional) | |
| JIRA_BASE_URL | Yes | Your Jira base URL (e.g., https://your-company.atlassian.net) | |
| JIRA_API_TOKEN | Yes | Your Jira API token | |
| CONFLUENCE_EMAIL | No | Your Confluence email address (optional) | |
| CONFLUENCE_BASE_URL | No | Your Confluence base URL (optional) | |
| CONFLUENCE_API_TOKEN | No | Your Confluence API token (optional) |
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 | {} |
| prompts | {} |
| resources | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_issueB | Get details of a specific Jira issue |
| search_issuesB | Search Jira issues using JQL |
| create_issueC | Create a new Jira issue |
| update_issueC | Update an existing Jira issue |
| delete_issueC | Delete a Jira issue (use with caution!) |
| transition_issueB | Move an issue to a different status |
| get_transitionsB | Get available transitions for an issue |
| add_commentC | Add a comment to an issue |
| get_commentsB | Get comments on an issue |
| assign_issueC | Assign an issue to a user |
| get_projectsA | Get all Jira projects |
| get_projectB | Get project details |
| search_usersC | Search for Jira users |
| get_boardsB | Get all Jira boards |
| get_sprintsC | Get sprints for a board |
| get_sprint_issuesC | Get issues in a sprint |
| get_my_issuesC | Get issues assigned to current user |
| get_attachmentsB | Get attachments on an issue |
| add_worklogB | Log time worked on an issue |
| get_worklogsC | Get worklogs for an issue |
| get_time_trackingC | Get time tracking info for an issue |
| get_team_worklogsC | Get worklog summary for team |
| analyze_sprint_healthC | AI-powered sprint health analysis with metrics and recommendations |
| get_workload_dashboardC | Team workload analysis with balance metrics |
| analyze_issue_textC | NLP analysis of issue text for smart suggestions |
| create_smart_issueC | Create issue with AI-suggested type, priority, and labels |
| generate_release_notesC | Generate comprehensive release notes |
| save_sprint_reportB | Generate and save sprint report to local file or GitHub |
| save_workload_reportC | Generate and save workload report to local file or GitHub |
| save_release_notes_to_fileB | Generate release notes and save to local file or GitHub (no Confluence needed) |
| save_doc_to_githubB | Save any markdown content directly to a GitHub repository |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| sprint_review | Generate a comprehensive sprint review with health analysis |
| create_issue_from_description | Create a Jira issue from natural language description |
| generate_release_notes | Generate release notes for a version |
| team_standup | Generate team standup summary with blockers and progress |
| workload_analysis | Analyze team workload and provide recommendations |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| Jira Projects | List of all accessible Jira projects |
| Current Jira User | Information about the authenticated Jira user |
| Jira Boards | List of all Jira/Agile boards |
TDQS
Scored across 31 tools
Most Jira operational tools (get_issue, search_issues, create_issue, etc.) are clearly distinct, but there is overlap in the reporting/generation tools: generate_release_notes vs save_release_notes_to_file vs save_doc_to_github are confusingly similar, as are create_issue and create_smart_issue. An agent could easily select the wrong tool when these overlapping functions are involved.
Every tool name follows a consistent verb_noun pattern (e.g., get_boards, create_issue, analyze_sprint_health, save_doc_to_github). There is no mixing of camelCase or alternate verb styles, making the naming highly predictable.
With 31 tools, the server exceeds the 25-tool threshold for 'too many', making it feel bloated. Many tools are extremely narrow (e.g., get_transitions, get_attachments) and could be consolidated, though the diversity of Jira operations explains some of the count.
The server covers the full Jira issue lifecycle (create, get, update, delete, transition, comment, assign, worklog) plus sprint tracking and AI-based reporting. Minor gaps exist for things like project creation or issue linking, but these are not core to the apparent DevOps hub purpose and can be worked around.