MCP server intelligence profile

Docker MCP Server

Enables AI assistants like Claude to manage Docker containers, images, and Docker Compose deployments through the Model Context Protocol. Provides secure container lifecycle management, image operations, and multi-host Docker server connections

Local Onlymarcelofmatos
Awaiting current scanNpm · 1.0.1

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

1Distribution channel
10Independently 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 mcp-docker-server from npm

Version 1.0.1 declares 1 executable entrypoint.

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

Identity

Canonical slugdocker-mcp-server-96a65ce2DeploymentLocal Only
Canonical packagenpm:mcp-docker-serverRepositorymarcelofmatos/mcp-docker-server
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npmmcp-docker-server1.0.11Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npmmcp-docker-server1.0.1CurrentSep 5, 202610 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
mcp-server-dockerServer-reported name
1Capability groups
Aug 22, 2026Observed

Tools 10

ToolCategoryAnnotationsRisk
container_logsGet logs from a Docker container.
Input schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Container ID or name"
    },
    "tail": {
      "type": "number",
      "default": 100,
      "description": "Number of lines from the end"
    }
  },
  "required": [
    "id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
container_statsGet CPU, memory, and network stats for a running Docker container.
Input schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Container ID or name"
    }
  },
  "required": [
    "id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
exec_commandExecute a command inside a running Docker container.
Input schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Container ID or name"
    },
    "command": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Command and arguments, e.g. ['ls', '-la']"
    }
  },
  "required": [
    "id",
    "command"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
list_containersList Docker containers. Set all=true to include stopped containers.
Input schema
{
  "type": "object",
  "properties": {
    "all": {
      "type": "boolean",
      "default": false,
      "description": "Include stopped containers"
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
list_imagesList Docker images on the host.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {}
}
remove_containerRemove a Docker container. Use force=true to remove running containers.
Input schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Container ID or name"
    },
    "force": {
      "type": "boolean",
      "default": false,
      "description": "Force remove running container"
    }
  },
  "required": [
    "id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
remove_imageRemove a Docker image. Use force=true to force removal.
Input schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Image ID or tag"
    },
    "force": {
      "type": "boolean",
      "default": false,
      "description": "Force remove"
    }
  },
  "required": [
    "id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
restart_containerRestart a Docker container.
Input schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Container ID or name"
    }
  },
  "required": [
    "id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
start_containerStart a stopped Docker container.
Input schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Container ID or name"
    }
  },
  "required": [
    "id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
stop_containerStop a running Docker container.
Input schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Container ID or name"
    }
  },
  "required": [
    "id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

Docker MCP Server questions

How do I install Docker MCP Server?

Install the selected package version with: npm install --save-exact mcp-docker-server@1.0.1

What tools does Docker MCP Server provide?

Docker MCP Server exposed 10 tools during independent protocol observation, including container_logs, container_stats, exec_command, list_containers, list_images, remove_container, remove_image, restart_container, and others.

Is Docker 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.