sroach/docops-mcp-server
If you are the rightful owner of docops-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
A Spring Boot application providing visualization services for ADRs and Feature Cards using the Model Context Protocol.
DocOps MCP Server
A Spring Boot application that provides visualization services for Architecture Decision Records (ADRs) and Feature Cards using the Model Context Protocol (MCP).
Overview
This project is a server implementation that connects to the DocOps visualization service at roach.gy to generate SVG-based visualizations. It exposes AI tools through Spring AI's Model Context Protocol that can be used to create:
- Architecture Decision Records (ADRs)
- Feature Card visualizations
Features
Architecture Decision Records (ADRs)
Create standardized Architecture Decision Records with:
- Title and date
- Status (PROPOSED, ACCEPTED, SUPERSEDED, DEPRECATED, REJECTED)
- Context, decision, and consequences sections
- Optional participants and references
Feature Cards
Generate visual feature cards with:
- Title and description
- Emoji and color scheme
- Detailed bullet points
- Various layout options (GRID, COLUMN, ROW)
- Theme support (LIGHT, DARK, AUTO)
Getting Started
Prerequisites
- JDK 21 or higher
- Maven
Installation
- Clone the repository
- Build the project with Maven:
mvn clean install
- Run the application:
mvn spring-boot:run
Usage
The services are exposed as Spring AI tools that can be used through the Model Context Protocol. Example usage:
Creating an ADR
// Example code for creating an ADR
val adrService = AdrService()
val adr = AdrService.AdrData(
title = "Use Kotlin for Backend Development",
date = LocalDate.now(),
status = AdrService.AdrStatus.ACCEPTED,
context = listOf("We need to choose a programming language for our backend services"),
decision = listOf("We will use Kotlin for all new backend development"),
consequences = listOf("Improved null safety", "Better interoperability with Java")
)
val svgResponse = adrService.makeAdr(adr)
Creating Feature Cards
// Example code for creating Feature Cards
val featureCardService = FeatureCardService()
val featureCards = listOf(
FeatureCardService.FeatureCardData(
title = "Kotlin Support",
description = "First-class Kotlin language support",
emoji = "🚀",
colorScheme = "BLUE",
details = listOf("Null safety", "Coroutines", "Extension functions")
)
)
val svgResponse = featureCardService.featureCard(featureCards, theme = "DARK", layout = "GRID")
References
License
This project is licensed under the terms of the license included in the repository.