Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,31 @@ Full example configuration (for Claude Desktop, Claude Code, and Cursor):
}
```

**Optional local guardrail:**
```json
{
"mcpServers": {
"octopusdeploy": {
"type": "stdio",
"command": "armorer-guard",
"args": [
"mcp-proxy",
"--",
"npx",
"-y",
"@octopusdeploy/mcp-server"
],
"env": {
"OCTOPUS_SERVER_URL": "https://your-octopus.com",
"OCTOPUS_API_KEY": "YOUR_API_KEY"
}
}
}
}
```

This optional configuration uses [Armorer Guard](https://github.com/ArmorerLabs/Armorer-Guard) as a local MCP proxy. It inspects Octopus tool-call arguments for prompt injection, credential leakage, exfiltration risk, and dangerous actions before forwarding safe calls to the Octopus MCP Server.

**Read-only mode (recommended for production):**
```json
{
Expand Down