openapi-diff-mcp-server
0
The project provides an MCP server interface facilitating AI integration with the openapi-diff tool, designed for comparing OpenAPI specifications. It aims to make analysis of API changes more efficient for developers using the Cloude Desktop environment.
openapi-diff-mcp-server
MCP server interface for AI integration with openapi-diff tool for comparing OpenAPI specifications.
Features
- TBD
Usage
Using MCP Server with Cloude Desktop
- Build MCP server Jar using:
mvn clean install
- To use the MCP server with Cloude Desktop, you need to configure it using a
claude_desktop_config.json
file. Below is an example configuration:
{
"mcpServers": {
"openapi-diff-mcp-server": {
"command": "java",
"args": [
"-jar",
"-Dmcp.transport=stdio",
"/path/to/jar/openapi-diff-mcp-server-0.0.1-SNAPSHOT.jar"
]
}
}
}
Building and Running
mvn clean install
java -jar target/openapi-diff-mcp-server-<VERSION>.jar