Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"sdlc-tools": {
"args": [
"-jar",
"/absolute/path/to/sdlc-tools-mcp-server-jar-with-dependencies.jar"
],
"command": "java"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A comprehensive Model Context Protocol (MCP) server for software development lifecycle management, providing integrated tools for Maven project analysis, JIRA issue tracking, and Confluence documentation.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools
Manage Supabase projects — databases, auth, storage, and edge functions
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
MCP Security Weekly
Get CVE alerts and security updates for Sdlc Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A comprehensive Model Context Protocol (MCP) server for software development lifecycle management, providing integrated tools for Maven project analysis, JIRA issue tracking, and Confluence documentation.
This MCP server provides AI assistants like Claude Code with specialized tools to manage the complete software development lifecycle, integrating Maven build automation, JIRA project management, and Confluence knowledge management through a unified interface.
Works seamlessly with SDLC personas defined in .github/mcp/personas/:
cd sdlc-tools-mcp-server
mvn clean package
This creates an executable JAR: target/sdlc-tools-mcp-server-2.0.0-SNAPSHOT-jar-with-dependencies.jar
To avoid passing credentials with every JIRA and Confluence tool call, you can configure them once using either:
Environment Variables (recommended for security):
export JIRA_URL=https://your-domain.atlassian.net
export JIRA_EMAIL=your-email@example.com
export JIRA_API_TOKEN=your-jira-api-token
export CONFLUENCE_URL=https://your-domain.atlassian.net/wiki
export CONFLUENCE_EMAIL=your-email@example.com
export CONFLUENCE_API_TOKEN=your-confluence-api-token
Configuration File:
Create application.properties in one of these locations:
~/.sdlc-tools/application.properties# JIRA Configuration
jira.url=https://your-domain.atlassian.net
jira.email=your-email@example.com
jira.api.token=your-jira-api-token
# Confluence Configuration
confluence.url=https://your-domain.atlassian.net/wiki
confluence.email=your-email@example.com
confluence.api.token=your-confluence-api-token
Copy application.properties.example to get started:
cp application.properties.example application.properties
# Edit application.properties with your credentials
Generate API Tokens: