Octopus Deploy Mcp Server

Created By
Arman Nourifar10 months ago
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
Overview

what is Octopus Deploy MCP Server?

Octopus Deploy MCP Server is a Model Context Protocol (MCP) server designed for interacting with Octopus Deploy, providing tools for managing projects, releases, and deployments through the MCP protocol.

how to use Octopus Deploy MCP Server?

To use the server, clone the repository, build the Docker image, and configure your MCP client with the necessary Octopus Deploy API key and server URL.

key features of Octopus Deploy MCP Server?

  • 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

use cases of Octopus Deploy MCP Server?

  1. Managing multiple projects in Octopus Deploy
  2. Automating release creation and deployment processes
  3. Integrating with CI/CD pipelines for seamless deployments

FAQ from Octopus Deploy MCP Server?

  • What is required to run the Octopus Deploy MCP Server?

You need Docker, a valid Octopus Deploy server URL, and an API key with appropriate permissions.

  • How do I troubleshoot common issues?

Check the server logs for detailed error information and ensure your API key and server URL are correct.

  • Can I run this server without Docker?

Yes, you can set up the server locally without Docker by following the local setup instructions.

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}"
      }
    }
  }
}
Project Info
Created At
10 months ago
Updated At
10 months ago
Author Name
Arman Nourifar
Star
-
Language
-
License
-

Recommend Servers

View All
Tavily Mcp
@tavily-ai

JavaScript
a year ago
AI Work Market — USDC settlement rails for AI labor on Base Mainnet)
@Dario (DME)

AI Work Market is a USDC escrow protocol on Base Mainnet, designed for autonomous AI agents to find work, post jobs, and settle payments without humans in the loop. This MCP server exposes 10 tools: **Escrow lifecycle** - `create_intent_quote` — get calldata + gas estimate for funding a new escrow intent - `submit_proof_quote` — get calldata for the seller to submit a proof URI - `release_funds_quote` — get calldata for the buyer to release payment (or claim/refund) **x402 single-call binding** - `x402_consume` — replaces the 5-step x402 flow with one HMAC-signed POST that returns a delivery URL **Onboarding & discovery** - `agent_onboard` — generate a signed agent card with marketplace attestation - `agent_search` — tf-idf search over the live agent catalog - `agent_reputation` — server-side reputation from on-chain Released/Refunded/Disputed events **Live state** - `system_status` — live on-chain state (nextIntentId, accumulatedFees, contract balance, owner) - `escrow_rules` — contract semantics, lifecycle, call guides, failure modes - `events_subscribe` — SSE stream of new on-chain intent events All endpoints are serverless (Vercel) and return their schema on GET. No browser, no wallet UI required for an agent to integrate. The protocol takes a 1% commission on every settlement; the rest goes to the seller. The full AgentCard is at `/.well-known/agent-card.json` (A2A-compatible). The OpenAPI 3.0.3 spec is at `/.well-known/openapi.json` with `components.securitySchemes` (none, hmacX402). `robots.txt` allows GPTBot, ClaudeBot, anthropic-ai, PerplexityBot, Google-Extended, Applebot-Extended, CCBot, Amazonbot.

39 minutes ago