MCP server intelligence profile

Docker Forge MCP Server

Generates, audits, and tunes Docker Compose stacks inside Claude Code

Local Onlyfredericsuretat
Awaiting current scanNpm · 0.1.0

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
6Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install docker-forge-mcp from npm

Version 0.1.0 declares 1 executable entrypoint.

npm install --save-exact docker-forge-mcp@0.1.0
npx -y -p docker-forge-mcp@0.1.0 docker-forge-mcp
MCP client configuration example
{
  "mcpServers": {
    "docker-forge-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "docker-forge-mcp@0.1.0",
        "docker-forge-mcp"
      ]
    }
  }
}

Identity

Canonical slugdocker-forge-mcp-166ca73dDeploymentLocal Only
Canonical packagenpm:docker-forge-mcpRepositoryfredericsuretat/docker-forge-mcp
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npmdocker-forge-mcp0.1.01Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npmdocker-forge-mcp0.1.0CurrentSep 5, 20266 toolsSucceeded · 0 resources · 0 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2025-06-18Negotiated protocol
docker-forgeServer-reported name
1Capability groups
Aug 22, 2026Observed

Tools 6

ToolCategoryAnnotationsRisk
add_traefikGenerate Traefik v3 labels for a Docker service. Produces ready-to-paste labels for docker-compose.yml and a networks section. Supports TLS (Let's Encrypt), HTTP→HTTPS redirect, and optional middleware presets: rate-limit, security-headers, auth-basic, compress.
Input schema
{
  "type": "object",
  "properties": {
    "service_name": {
      "type": "string",
      "description": "Name of the Docker service (used as router/service name in Traefik)"
    },
    "domain": {
      "type": "string",
      "description": "Public domain, e.g. \"myapp.example.com\""
    },
    "port": {
      "type": "number",
      "description": "Internal port the service listens on (e.g. 3000, 8000, 80)"
    },
    "network": {
      "type": "string",
      "description": "External Traefik network name (default: \"proxy\")",
      "default": "proxy"
    },
    "tls": {
      "type": "boolean",
      "description": "Enable TLS with certresolver (default: true)",
      "default": true
    },
    "certresolver": {
      "type": "string",
      "description": "Traefik certresolver name (default: \"letsencrypt\")",
      "default": "letsencrypt"
    },
    "middlewares": {
      "type": "array",
      "items": {
        "type": "string",
        "enum": [
          "rate-limit",
          "security-headers",
          "auth-basic",
          "compress",
          "redirect-https"
        ]
      },
      "description": "Optional middleware presets to enable"
    },
    "include_http_redirect": {
      "type": "boolean",
      "description": "Add HTTP→HTTPS redirect router (default: true)",
      "default": true
    }
  },
  "required": [
    "service_name",
    "domain",
    "port"
  ]
}
audit_composeAudit a Docker Compose YAML string for security vulnerabilities and best-practice violations. Checks: privileged mode, root user, docker socket mounts, plaintext secrets, exposed database ports, missing restart policies, missing resource limits, unpinned image tags, missing healthchecks, and depends_on readiness issues. Returns a score (0-100) and categorized issues (critical/warning/info).
Input schema
{
  "type": "object",
  "properties": {
    "compose_yaml": {
      "type": "string",
      "description": "The full content of your docker-compose.yml file to audit"
    }
  },
  "required": [
    "compose_yaml"
  ]
}
generate_dockerfile[PRO] Generate an optimized, security-hardened multi-stage Dockerfile. Supports Node.js (including Next.js standalone), Python (FastAPI/Django), and Go. Features: multi-stage builds, non-root user, minimal final image, HEALTHCHECK.
Input schema
{
  "type": "object",
  "properties": {
    "runtime": {
      "type": "string",
      "enum": [
        "node",
        "python",
        "go"
      ],
      "description": "Runtime/language for the Dockerfile"
    },
    "app_type": {
      "type": "string",
      "description": "App type hint: \"nextjs\" for Next.js standalone, \"express\" for generic Node, etc."
    },
    "version": {
      "type": "string",
      "description": "Runtime version (e.g. \"20\" for Node.js, \"3.12\" for Python, \"1.22\" for Go)"
    },
    "port": {
      "type": "number",
      "description": "Port the app listens on (default: 3000)",
      "default": 3000
    },
    "package_manager": {
      "type": "string",
      "enum": [
        "npm",
        "pnpm",
        "yarn"
      ],
      "description": "Package manager for Node.js projects (default: npm)",
      "default": "npm"
    }
  },
  "required": [
    "runtime"
  ]
}
generate_env[PRO] Extract all environment variable placeholders (${VAR}) from a Docker Compose YAML and generate a .env template file with categorized comments (database, auth/secrets, app). Includes generation hints for secrets.
Input schema
{
  "type": "object",
  "properties": {
    "compose_yaml": {
      "type": "string",
      "description": "The docker-compose.yml content to extract variables from"
    }
  },
  "required": [
    "compose_yaml"
  ]
}
generate_stackGenerate a production-ready Docker Compose stack from a natural language description or stack type. Includes security best practices: resource limits, healthchecks, restart policies, non-root users, named volumes. Optionally adds Traefik v3 labels for reverse proxy + HTTPS.
Input schema
{
  "type": "object",
  "properties": {
    "description": {
      "type": "string",
      "description": "Natural language description of what you want to build, e.g. \"Node.js API with PostgreSQL and Redis cache\""
    },
    "stack_type": {
      "type": "string",
      "enum": [
        "auto",
        "node-postgres-redis",
        "node-postgres",
        "node-redis",
        "python-postgres-redis-celery",
        "python-postgres",
        "wordpress",
        "nextjs-postgres",
        "monitoring",
        "nginx"
      ],
      "description": "Explicit stack type. Use \"auto\" to detect from description.",
      "default": "auto"
    },
    "app_name": {
      "type": "string",
      "description": "Name for the main application service (used as container name prefix)"
    },
    "domain": {
      "type": "string",
      "description": "Public domain for Traefik routing, e.g. \"myapp.example.com\". If provided, Traefik labels are added."
    },
    "traefik_network": {
      "type": "string",
      "description": "External Docker network for Traefik (default: \"proxy\")",
      "default": "proxy"
    },
    "node_version": {
      "type": "string",
      "description": "Node.js version to use in image tags (default: \"20\")",
      "default": "20"
    },
    "python_version": {
      "type": "string",
      "description": "Python version to use in image tags (default: \"3.12\")",
      "default": "3.12"
    },
    "db_name": {
      "type": "string",
      "description": "Database name to use (defaults to app_name)"
    }
  },
  "required": []
}
list_stacksList all available Docker Compose stack templates with descriptions and tags.
Input schema
{
  "type": "object",
  "properties": {},
  "required": []
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

Docker Forge MCP Server questions

How do I install Docker Forge MCP Server?

Install the selected package version with: npm install --save-exact docker-forge-mcp@0.1.0

What tools does Docker Forge MCP Server provide?

Docker Forge MCP Server exposed 6 tools during independent protocol observation, including add_traefik, audit_compose, generate_dockerfile, generate_env, generate_stack, list_stacks.

Is Docker Forge MCP Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Company and product intelligence

These internal links are derived from strong identity fields such as the implementation name, package, repository, vendor, and listing name—not generic description prose.

Associated company landscape

Docker intelligence →

Association is based on retained identity fields; it does not by itself prove first-party publication.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.