Fully Isolated

Pre-tested Argus MCP backend configurations for fully isolated servers.

Dice Roller MCP (containerized)

View on GitHub

Roll dice and perform tabletop RPG calculations. Pure computation — no network access required. Runs in a fully isolated container.

name: "Dice Roller MCP (containerized)"
description: "Roll dice and perform tabletop RPG calculations. Pure computation — no network access required. Runs in a fully isolated container."
# No API keys required — fully offline computation

dice-container:
  type: stdio
  command: npx
  args:
    - "-y"
    - "mcp-dice"
  container:
    enabled: true
    network: none

Sequential Thinking (containerized — network isolated)

View on GitHub

Structured sequential reasoning. Runs in a fully network-isolated container — no outbound connections required.

name: "Sequential Thinking (containerized — network isolated)"
description: "Structured sequential reasoning. Runs in a fully network-isolated container — no outbound connections required."

sequential-thinking:
  type: stdio
  command: npx
  args:
    - "-y"
    - "@modelcontextprotocol/server-sequential-thinking"
  container:
    enabled: true
    network: none

Sequential Thinking (subprocess)

View on GitHub

Structured sequential reasoning for complex problem-solving. Runs as a subprocess via npx with no network access required.

name: "Sequential Thinking (subprocess)"
description: "Structured sequential reasoning for complex problem-solving. Runs as a subprocess via npx with no network access required."

sequential-thinking:
  type: stdio
  command: npx
  args:
    - "-y"
    - "@modelcontextprotocol/server-sequential-thinking"

Time Server (containerized — network isolated)

View on GitHub

Current time and timezone tools. Runs in a fully network-isolated container — pure computation, no outbound connections.

name: "Time Server (containerized — network isolated)"
description: "Current time and timezone tools. Runs in a fully network-isolated container — pure computation, no outbound connections."

time:
  type: stdio
  command: uvx
  args:
    - "mcp-server-time"
  container:
    enabled: true
    network: none

Time Server (subprocess)

View on GitHub

Provides current time and timezone conversion tools. Runs as a subprocess via uvx with no network access required.

name: "Time Server (subprocess)"
description: "Provides current time and timezone conversion tools. Runs as a subprocess via uvx with no network access required."

time:
  type: stdio
  command: uvx
  args:
    - "mcp-server-time"

Want to add a configuration? See the contributing guide.