A Model Context Protocol (MCP) server for interacting with Octopus Deploy. This server provides tools for managing projects, releases, and deployments through the MCP protocol.
Features
Project Management: List and query Octopus Deploy projects
Release Management: Get latest releases and create new releases
Deployment Management: Deploy releases and check deployment status
Multi-Space Support: Work with different Octopus Deploy spaces
Docker Support: Containerized deployment for easy integration
Server Config
{
"mcpServers": {
"octopus-deploy-mcp-server": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-e",
"OCTOPUS_URL",
"-e",
"OCTOPUS_API_KEY",
"octopus-deploy-mcp:latest",
"octopus-deploy-mcp"
],
"env": {
"OCTOPUS_URL": "https://your-octopus-server.com",
"OCTOPUS_API_KEY": "${input:octopus-api-key}"
}
}
}
}