Elevance MCP Atlassian Server
Provides tools for interacting with Confluence, including content search, creating and updating pages, managing comments, attachments, labels, and retrieving page views and diff history.
Provides tools for interacting with Jira, including issue search and management, creating and updating issues, managing comments, attachments, worklogs, sprints, boards, versions, components, and viewing analytics and development information.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Elevance MCP Atlassian ServerFind my assigned Jira issues"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Elevance MCP Atlassian - Standalone Package
Model Context Protocol server for Jira and Confluence integration with AI assistants.
What This Provides
72 Tools Total:
48 Jira tools (search, create, update, transitions, comments, etc.)
24 Confluence tools (search, pages, comments, attachments, etc.)
Related MCP server: Jira Cloud MCP Server
Quick Setup (5 Minutes)
1. Get Your Personal Access Token (PAT)
Jira & Confluence:
Login to https://jira.elevancehealth.com
Click Profile Icon → Profile
Navigate to "Personal Access Tokens"
Click "Create Token"
Name:
MCP Atlassian IntegrationExpiry: 1 year
COPY THE TOKEN (shown only once!)
2. Configure Environment
# Copy template
copy .env.template .env
# Edit .env and paste your PAT tokens
notepad .envReplace YOUR_JIRA_PAT_TOKEN_HERE and YOUR_CONFLUENCE_PAT_TOKEN_HERE with your actual token.
3. Install Dependencies
# Option A: Using pip
pip install -r requirements.txt
# Option B: Install as package
pip install -e .4. Configure Your IDE
For Claude Desktop:
Edit %APPDATA%\Claude\claude_desktop_config.json:
{
"mcpServers": {
"elevance-atlassian": {
"command": "python",
"args": ["-m", "mcp_atlassian"],
"cwd": "C:\\path\\to\\elevance-mcp-atlassian-standalone",
"env": {
"JIRA_URL": "https://jira.elevancehealth.com",
"JIRA_PERSONAL_TOKEN": "YOUR_PAT_HERE",
"CONFLUENCE_URL": "https://confluence.elevancehealth.com/",
"CONFLUENCE_PERSONAL_TOKEN": "YOUR_PAT_HERE"
}
}
}
}For Windsurf:
Add to your MCP settings or use the .env file approach (recommended).
For Cursor:
Add to MCP configuration in settings, similar format as Claude Desktop.
5. Test Connection
python validate_setup.pyYou should see all checks passing with ✅ symbols.
6. Start Using!
Restart your IDE and ask your AI assistant:
"Find my assigned Jira issues"
"Search Confluence for onboarding docs"
"Create a bug in project XYZ"
"Update PROJ-123 status to In Progress"
"Show me issues in the current sprint"
"Get page content from Confluence space DEV"
Available Tools
Jira Tools (48)
Search & Discovery:
jira_search- Search issues with JQLjira_search_fields- Find custom field definitionsjira_get_all_projects- List accessible projectsjira_get_project_issues- Get all issues in project
Issue Management:
jira_get_issue- Get issue detailsjira_create_issue- Create new issuejira_update_issue- Update existing issuejira_delete_issue- Delete issuejira_batch_create_issues- Create multiple issues
Status & Workflow:
jira_transition_issue- Change issue statusjira_get_transitions- Get available transitions
Comments:
jira_add_comment- Add comment to issuejira_edit_comment- Edit existing comment
Links:
jira_create_issue_link- Link two issuesjira_remove_issue_link- Remove linkjira_create_remote_issue_link- Create web linkjira_link_to_epic- Link issue to epicjira_get_link_types- Get available link types
Attachments:
jira_download_attachments- Download issue attachmentsjira_get_issue_images- Get images as inline content
Watchers:
jira_add_watcher- Add watcher to issuejira_remove_watcher- Remove watcherjira_get_issue_watchers- List watchers
Time Tracking:
jira_add_worklog- Log work on issuejira_get_worklog- Get worklog entries
Agile/Sprints:
jira_get_agile_boards- List boardsjira_get_board_issues- Get issues on boardjira_get_sprints_from_board- List sprintsjira_get_sprint_issues- Get issues in sprintjira_create_sprint- Create new sprintjira_update_sprint- Update sprintjira_add_issues_to_sprint- Add issues to sprint
Versions:
jira_get_project_versions- List versionsjira_create_version- Create new versionjira_batch_create_versions- Create multiple versions
Components:
jira_get_project_components- List project components
Analytics:
jira_get_issue_dates- Get date informationjira_get_issue_sla- Calculate SLA metricsjira_batch_get_changelogs- Get change history
Development Info:
jira_get_issue_development_info- Get PRs, commits, branchesjira_get_issues_development_info- Batch development info
Advanced:
jira_get_user_profile- Get user informationjira_get_field_options- Get custom field optionsjira_get_issue_proforma_forms- Get ProForma formsjira_get_proforma_form_details- Get form detailsjira_update_proforma_form_answers- Update form answers
Service Desk (Server/DC only):
jira_get_service_desk_for_project- Get service deskjira_get_service_desk_queues- List queuesjira_get_queue_issues- Get issues in queue
Confluence Tools (24)
Search:
confluence_search- Search content with CQLconfluence_search_user- Search users
Pages:
confluence_get_page- Get page contentconfluence_create_page- Create new pageconfluence_update_page- Update pageconfluence_delete_page- Delete pageconfluence_move_page- Move pageconfluence_get_page_children- Get child pagesconfluence_get_page_history- Get page versionconfluence_get_page_diff- Compare versions
Comments:
confluence_add_comment- Add commentconfluence_reply_to_comment- Reply to commentconfluence_get_comments- Get page comments
Attachments:
confluence_get_attachments- List attachmentsconfluence_upload_attachment- Upload fileconfluence_upload_attachments- Upload multiple filesconfluence_download_attachment- Download fileconfluence_download_content_attachments- Download all attachmentsconfluence_delete_attachment- Delete attachment
Images:
confluence_get_page_images- Get images as inline content
Labels:
confluence_get_labels- Get content labelsconfluence_add_label- Add label
Analytics:
confluence_get_page_views- Get view statistics
Troubleshooting
"Module not found" error
pip install -e ."Authentication failed"
Verify PAT token is valid and not expired
Check token hasn't been revoked
Ensure correct URL (https://jira.elevancehealth.com)
Try regenerating the token
SSL Certificate errors
Add to .env file:
JIRA_SSL_VERIFY=false
CONFLUENCE_SSL_VERIFY=falseConnection test fails
# Test if Python can import the module
python -c "import mcp_atlassian; print('OK')"
# Check MCP version
python -m mcp_atlassian --version"No such file or directory" when running validation
Make sure you're in the correct directory:
cd C:\path\to\elevance-mcp-atlassian-standalone
python validate_setup.pyTools not appearing in IDE
Verify IDE configuration has correct paths
Restart IDE completely
Check IDE logs for MCP connection errors
Ensure
TOOLSETS=allin.envor IDE config
Security Best Practices
✅ Keep your
.envfile private✅ Never share PAT tokens
✅ Rotate tokens every 6-12 months
✅ Don't commit
.envto version control✅ Use strong token names for tracking
✅ Revoke tokens when no longer needed
Advanced Configuration
Filter to Specific Projects
In .env:
JIRA_PROJECTS_FILTER=PROJ1,PROJ2,PROJ3
CONFLUENCE_SPACES_FILTER=SPACE1,SPACE2,SPACE3Enable Verbose Logging
In .env:
MCP_VERBOSE=true
MCP_VERY_VERBOSE=true # Debug levelRead-Only Mode (Testing)
In .env:
READ_ONLY_MODE=trueThis prevents any write operations (create, update, delete).
Custom Toolsets
In .env:
# Only core tools
TOOLSETS=default
# Specific toolsets
TOOLSETS=default,jira_agile,jira_analytics
# Specific tools only
ENABLED_TOOLS=jira_search,jira_get_issue,confluence_searchSystem Requirements
Python: 3.10 or higher
Operating System: Windows, macOS, or Linux
Network: Access to jira.elevancehealth.com
IDE: Claude Desktop, Cursor, or Windsurf with MCP support
Package Contents
elevance-mcp-atlassian-standalone/
├── src/mcp_atlassian/ # Complete MCP implementation
│ ├── jira/ # 48 Jira tools
│ ├── confluence/ # 24 Confluence tools
│ ├── models/ # Data models
│ ├── servers/ # MCP server logic
│ └── utils/ # Utilities
├── .env.template # Configuration template
├── requirements.txt # Python dependencies
├── pyproject.toml # Package metadata
├── validate_setup.py # Setup validation script
├── README.md # This file
├── SETUP-GUIDE.md # Detailed setup instructions
└── LICENSE # MIT LicenseSupport
For issues or questions, contact:
Developer: Mohamed Wasim
Email: Mohamed.Wasim@carelon.com
Next Steps
✅ Complete setup using steps above
✅ Run validation:
python validate_setup.py✅ Configure your IDE
✅ Restart IDE
✅ Start using AI assistant with Jira/Confluence
Additional Resources
SETUP-GUIDE.md - Detailed step-by-step guide with screenshots descriptions
Original Documentation - https://mcp-atlassian.soomiles.com
License
MIT License - Internal use for Elevance Health/Carelon
Version: 1.0
Last Updated: March 2026
Maintained by: Carelon Global Solutions
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityCmaintenanceEnables AI assistants to interact with Jira and Confluence via natural language, supporting 37 Jira tools and 16 Confluence tools.53MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to manage Jira Cloud projects, issues, sprints, and more through a curated set of 62 tools covering the full lifecycle of stories, epics, bugs, and sprints.GPL 3.0
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to interact with Jira Cloud and Confluence through natural language, performing JQL searches, issue management, and Confluence page creation.71MIT
- AlicenseAqualityBmaintenanceEnables AI assistants to interact with Atlassian Cloud (Jira, Confluence, Bitbucket) through natural language, providing CRUD operations for issues, pages, pull requests, and more.8620MIT
Related MCP Connectors
Connect to Atlassian Jira, Confluence, and Compass to search, create, and manage your work.
Connect AI assistants to GitHub - manage repos, issues, PRs, and workflows through natural language.
Task manager your agent can fully operate: boards, tasks, sprints, roles, worklogs, day planner.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ajaysonicarelon/atlassian-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server