MCP server intelligence profile

mcp-remote-docker MCP Server

Manages Docker containers, images, and Compose stacks on a remote host over SSH, with file sync and deploy orchestration

Local Onlyluisf371
Awaiting current scanSource Git · f286a9da168ceec80b17eb724d26a9b074ff257e

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

1Distribution channel
14Independently 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.

No verified installation or connection method is available in the retained evidence yet.

Identity

Canonical slugmcp-remote-docker-d2d24e3eDeploymentLocal Only
Canonical packageRepositoryluisf371/Docker-mcp-server
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
source_gitluisf371/docker-mcp-serverf286a9da168ceec80b17eb724d26a9b074ff257e1Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
source_gitluisf371/docker-mcp-serverf286a9da168ceec80b17eb724d26a9b074ff257eCurrentAug 25, 202614 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-remote-dockerServer-reported name
1Capability groups
Aug 25, 2026Observed

Tools 14

ToolCategoryAnnotationsRisk
deployFull deploy pipeline: sync files → build → restart containers → fetch logs
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "localPath": {
      "type": "string",
      "description": "Local directory to deploy"
    },
    "remotePath": {
      "description": "Remote destination path (default: /home/user/app)",
      "type": "string"
    },
    "buildCommand": {
      "description": "Optional build command to run after file sync (e.g. 'npm run build')",
      "type": "string"
    },
    "restartCommand": {
      "description": "Custom restart command (default: docker compose up -d --build)",
      "type": "string"
    },
    "logLines": {
      "description": "Number of log lines to fetch after restart (default: 50)",
      "type": "number"
    },
    "exclude": {
      "description": "File patterns to exclude from sync",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "composeFile": {
      "description": "Compose file name (if not docker-compose.yml)",
      "type": "string"
    }
  },
  "required": [
    "localPath"
  ]
}
docker_buildBuild a Docker image on the remote server
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "path": {
      "type": "string",
      "description": "Build context path on the remote server"
    },
    "tag": {
      "description": "Image tag, e.g. 'myapp:latest'",
      "type": "string"
    },
    "dockerfile": {
      "description": "Path to Dockerfile (relative to build context)",
      "type": "string"
    },
    "noCache": {
      "description": "Build without cache (default: false)",
      "type": "boolean"
    }
  },
  "required": [
    "path"
  ]
}
docker_composeRun a docker compose command on the remote server
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "subcommand": {
      "type": "string",
      "description": "Compose subcommand, e.g. 'up -d', 'down', 'ps', 'build'"
    },
    "path": {
      "description": "Directory containing docker-compose.yml on remote",
      "type": "string"
    },
    "file": {
      "description": "Compose file name (if not docker-compose.yml)",
      "type": "string"
    }
  },
  "required": [
    "subcommand"
  ]
}
docker_compose_logsFetch docker compose logs from the remote server
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "path": {
      "type": "string",
      "description": "Directory containing docker-compose.yml on remote"
    },
    "service": {
      "description": "Specific service name (omit for all services)",
      "type": "string"
    },
    "lines": {
      "description": "Number of lines to tail (default: 100)",
      "type": "number"
    },
    "since": {
      "description": "Show logs since timestamp or relative",
      "type": "string"
    },
    "timestamps": {
      "description": "Show timestamps (default: false)",
      "type": "boolean"
    },
    "file": {
      "description": "Compose file name (if not docker-compose.yml)",
      "type": "string"
    }
  },
  "required": [
    "path"
  ]
}
docker_inspectInspect a Docker container on the remote server
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "container": {
      "type": "string",
      "description": "Container name or ID"
    }
  },
  "required": [
    "container"
  ]
}
docker_list_containersList Docker containers on the remote server
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "all": {
      "description": "Include stopped containers (default: false)",
      "type": "boolean"
    }
  }
}
docker_logsFetch logs from a Docker container on the remote server
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "container": {
      "type": "string",
      "description": "Container name or ID"
    },
    "lines": {
      "description": "Number of lines to tail (default: 100)",
      "type": "number"
    },
    "since": {
      "description": "Show logs since timestamp or relative, e.g. '10m', '2024-01-01T00:00:00'",
      "type": "string"
    },
    "until": {
      "description": "Show logs until timestamp or relative",
      "type": "string"
    },
    "timestamps": {
      "description": "Show timestamps (default: false)",
      "type": "boolean"
    }
  },
  "required": [
    "container"
  ]
}
docker_removeRemove a Docker container on the remote server
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "container": {
      "type": "string",
      "description": "Container name or ID"
    },
    "force": {
      "description": "Force remove running container (default: false)",
      "type": "boolean"
    }
  },
  "required": [
    "container"
  ]
}
docker_restartRestart a Docker container on the remote server
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "container": {
      "type": "string",
      "description": "Container name or ID"
    }
  },
  "required": [
    "container"
  ]
}
docker_runRun a new Docker container on the remote server
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "image": {
      "type": "string",
      "description": "Docker image to run"
    },
    "name": {
      "description": "Container name",
      "type": "string"
    },
    "detach": {
      "description": "Run in background (default: true)",
      "type": "boolean"
    },
    "ports": {
      "description": "Port mappings, e.g. ['8080:80', '443:443']",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "volumes": {
      "description": "Volume mounts, e.g. ['./data:/data']",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "env": {
      "description": "Environment variables, e.g. ['NODE_ENV=production']",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "command": {
      "description": "Command to run in the container",
      "type": "string"
    }
  },
  "required": [
    "image"
  ]
}
docker_startStart a Docker container on the remote server
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "container": {
      "type": "string",
      "description": "Container name or ID"
    }
  },
  "required": [
    "container"
  ]
}
docker_stopStop a Docker container on the remote server
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "container": {
      "type": "string",
      "description": "Container name or ID"
    },
    "timeout": {
      "description": "Seconds to wait before killing (default: 10)",
      "type": "number"
    }
  },
  "required": [
    "container"
  ]
}
file_syncSync files from your local machine to the remote server via rsync/scp
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "localPath": {
      "type": "string",
      "description": "Local directory or file path to sync"
    },
    "remotePath": {
      "description": "Remote destination path (default: /home/user/app)",
      "type": "string"
    },
    "delete": {
      "description": "Delete remote files not present locally (default: false)",
      "type": "boolean"
    },
    "exclude": {
      "description": "Patterns to exclude, e.g. ['node_modules', '.git']",
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "localPath"
  ]
}
remote_execExecute a command on the remote server via SSH
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "command": {
      "type": "string",
      "description": "Shell command to execute on the remote server"
    },
    "workingDir": {
      "description": "Working directory on the remote server",
      "type": "string"
    },
    "timeoutMs": {
      "description": "Command timeout in milliseconds (default: 120000)",
      "type": "number"
    }
  },
  "required": [
    "command"
  ]
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

mcp-remote-docker MCP Server questions

How do I install mcp-remote-docker MCP Server?

No verified package installation command is available in the retained catalog evidence.

What tools does mcp-remote-docker MCP Server provide?

mcp-remote-docker MCP Server exposed 14 tools during independent protocol observation, including deploy, docker_build, docker_compose, docker_compose_logs, docker_inspect, docker_list_containers, docker_logs, docker_remove, and others.

Is mcp-remote-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.