MCP Servers for QA and Release Coordination
Provides tools for searching Confluence pages, reading articles, and writing content to pages.
Provides tools for querying Jira tickets, filtering by testing status and team, searching with JQL, and generating testing summaries.
Provides tools for interacting with Slack, including reading channel messages, analyzing auto test results, detecting blocking issues, sending messages to a restricted channel, and debugging bot messages.
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., "@MCP Servers for QA and Release Coordinationgive me the release status overview for today"
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.
MCP Servers
Model Context Protocol servers for Slack, Jira, Confluence, and release coordination. Built for QA workflows and daily release status reporting.
Quick Start
# 1. Install
git clone <repo> && cd mcp-servers
npm install
# 2. Configure credentials (see below)
cp env.example .env
# Edit .env with your tokens
# 3. Build & verify
npm run build
./test-servers.shRelated MCP server: MCP Atlassian Node Server
Credentials Setup
All servers load credentials from .env in project root. Never put credentials in mcp.json.
Jira & Confluence
JIRA_BASE_URL=https://yourorg.atlassian.net
JIRA_EMAIL=your-email@company.com
JIRA_API_TOKEN=your-api-token
CONFLUENCE_BASE_URL=https://yourorg.atlassian.net
CONFLUENCE_EMAIL=your-email@company.com
CONFLUENCE_API_TOKEN=your-api-tokenGet API tokens: https://id.atlassian.com/manage-profile/security/api-tokens
Slack (XOXC/XOXD Session Auth)
SLACK_MCP_XOXC_TOKEN=xoxc-your-session-token
SLACK_MCP_XOXD_TOKEN=xoxd-your-cookie-valueExtract tokens:
Open Slack in browser, log in
DevTools (F12) → Application → Cookies →
https://app.slack.comFind
dcookie → this is XOXD (starts withxoxd-)Network tab → reload → find
api.slack.comrequestIn headers, find
Authorization: Bearer xoxc-...→ this is XOXC
See slack/README.md for detailed instructions.
MCP Configuration Files
This project includes multiple MCP configuration files for different purposes:
File | Purpose |
| VS Code Claude extension - edit paths and restart VS Code |
| Claude Desktop app configuration |
| Reference config with npm script commands |
VS Code Setup:
cp .vscode/mcp.json.example .vscode/mcp.json
# Update paths in mcp.json to your project location
# Restart VS Code after changesDocumentation
Each server has its own README with tools, CLI testing, and troubleshooting:
Server | Purpose | Docs |
Slack | Channel messages, auto test analysis, blocking issue detection | |
Jira | Testing status, ticket queries, team filtering | |
Confluence | Page search, article reading/writing | |
Release Coordinator | Orchestrates Jira+Slack into release reports | |
Shared | Common utilities (env loading, errors, types) |
Slack Deep-Dive Docs
The Slack server is the most complex and has additional documentation:
Doc | Purpose |
File structure, data flows, modification patterns | |
Copy-paste code snippets | |
Auth security, threat model | |
Test coverage, Jest setup |
Tool Quick Reference
Task | Tool | Server |
Full release status report |
| release-coordinator |
Find blocking issues |
| slack |
Check auto test results |
| slack |
Get test manager decision |
| slack |
Count tickets by status |
| jira |
List tickets in QA/Testing |
| jira |
Search Jira with JQL |
| jira |
Read Confluence page |
| confluence |
Search Confluence |
| confluence |
Post to Slack |
| slack (restricted to #qa-release-status) |
Debug bot messages |
| slack |
Get full message details |
| slack |
Architecture Invariants
These are intentional constraints - do not change without explicit request:
Constraint | Location | Reason |
Slack writes only to |
| Prevents accidental posts |
NoTest labels excluded by default |
| Matches testing board |
Team query mappings are hardcoded |
| Business logic |
Slack markdown (not standard) | All Slack output |
|
ESM imports need | All TypeScript | Required for ES modules |
Running Servers
npm run dev # All servers with auto-reload
npm run start # All servers production mode
npm run start:slack # Individual server
npm run start:jira
npm run start:confluence
npm run start:release-coordinatorTroubleshooting
Error | Fix |
| Check |
| API token expired or invalid |
| Run |
| Slack writes only allowed to #qa-release-status |
ESM/require errors | Imports must use |
VS Code MCP Caching
After rebuilding a server, VS Code caches the old instance. MCP tools will use OLD code until you restart VS Code (Cmd+Shift+P → "Reload Window").
Project Structure
├── README.md # This file
├── .env # Credentials (gitignored)
├── env.example # Credential template
├── mcp_config.json # MCP server definitions
├── mcp-servers/
│ ├── slack/ # Slack MCP server
│ │ ├── README.md # Slack docs
│ │ ├── docs/ # Deep-dive documentation
│ │ └── src/
│ ├── jira/ # Jira MCP server
│ │ ├── README.md
│ │ └── src/
│ ├── confluence/ # Confluence MCP server
│ │ ├── README.md
│ │ └── src/
│ ├── release-coordinator/ # Orchestration server
│ │ ├── README.md
│ │ └── src/
│ └── shared/ # Shared utilities
│ ├── README.md
│ └── src/
└── scripts/ # Automation (cron jobs)
└── README.mdThis 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.
Latest Blog Posts
- 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/1olegshev/mcp-servers'
If you have feedback or need assistance with the MCP directory API, please join our Discord server