
mcp-server
by OctopusDeploy·★ 96·Score 48
Official Octopus Deploy MCP server enabling AI assistants to interact with DevOps workflows and deployments.
Overview
The Octopus Deploy MCP Server provides AI assistants with powerful tools to inspect, query, and diagnose problems within Octopus Deploy instances, transforming them into DevOps wingmates. It supports both read and write operations, with security controls like read-only mode and authentication via API keys or access tokens. The server is well-maintained with active development and comprehensive documentation covering multiple installation methods and configuration options.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this if you're already using Octopus Deploy for deployment automation and want to integrate AI assistants into your DevOps workflows.
When NOT to choose this
Avoid this if you're not using Octopus Deploy, as it's vendor-specific and requires an active Octopus instance.
Tools this server exposes
12 tools extracted from the READMEget_deployment_from_urlGet deployment details from deployment URL
get_task_from_urlGet task details and logs from task URL
list_spacesList all spaces in the Octopus Deploy instance
list_environmentsList all environments in a given space
grep_llms_txtSearch the Octopus API catalog with grep-style semantics
create_releaseCreate new releases
deploy_releaseDeploy releases to environments and tenants
run_runbookRun a runbook against one or more environments
update_feature_toggleAdjust per-environment state and rollout percentages on feature toggles
executeExecute arbitrary Octopus REST API requests
grep_task_logSearch raw log content for specific patterns
read_resourceRead structured resources from Octopus API
Comparable tools
Installation
Installation
Install via Docker
docker run -i --rm -e OCTOPUS_API_KEY=your-key -e OCTOPUS_SERVER_URL=https://your-octopus.com octopusdeploy/mcp-serverInstall via Node
OCTOPUS_API_KEY=API-KEY \
OCTOPUS_SERVER_URL=https://your-octopus.com \
npx -y @octopusdeploy/mcp-serverClaude Desktop Configuration
{
"mcpServers": {
"octopusdeploy": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@octopusdeploy/mcp-server"],
"env": {
"OCTOPUS_SERVER_URL": "https://your-octopus.com",
"OCTOPUS_API_KEY": "YOUR_API_KEY"
}
}
}
}FAQ
- What authentication methods are supported?
- The MCP server supports API keys (recommended for interactive use) and access tokens/bearer tokens (for automated scenarios only).
- How can I limit permissions in production?
- Use the --read-only flag to disable all write operations and block POST/PUT/PATCH/DELETE requests through the execute tool.
Compare mcp-server with
Last updated · Auto-generated from public README + GitHub signals.