mcp-server-docker
Provides a secure MCP interface to execute commands inside Docker Compose service containers, with real-time output capture and configurable timeouts.
README
MCP Server: Docker Command Runner
This MCP (Model Context Protocol) server provides a secure interface for running commands inside Docker containers. It acts as a privileged sidecar that can execute arbitrary commands within specified Docker Compose service containers.
Features
- STDIO-based MCP transport for integration with Claude and other MCP clients
- Execute commands in any Docker Compose service container
- Real-time capture of stdout/stderr output
- Secure container allowlist configuration
- Configurable timeouts for long-running commands
- Clear error messages for common Docker issues
- Minimal dependencies and secure by design
Installation
Via NPX (Recommended)
Run the MCP server directly without cloning:
npx mcp-server-docker
Or install globally:
npm install -g mcp-server-docker
mcp-server-docker
As a Docker Service
Add the following to your docker-compose.yml:
services:
mcp-docker:
build: ./mcp-server-docker
volumes:
- /var/run/docker.sock:/var/run/docker.sock
ports:
- "3001:3000" # Expose MCP server
environment:
- COMPOSE_PROJECT_NAME=${COMPOSE_PROJECT_NAME}
- DEFAULT_SERVICE=app
- COMPOSE_FILE=docker-compose.yml
- PORT=3000
networks:
- your-network
For Local Development
cd mcp-server-docker
npm install
npm run build
Configuration
The server accepts the following environment variables:
ALLOWED_CONTAINERS: Comma-separated list of allowed service:container pairs (e.g., "app:myapp_container,db:mydb_container")DEFAULT_SERVICE: Default service to run commands in (default: "laravel_app")COMMAND_TIMEOUT: Command timeout in milliseconds (default: 300000)
MCP Tool: run_command
The server exposes a single tool called run_command:
Input Schema
{
"command": "string (required) - The command to execute",
"service": "string (optional) - Docker service name"
}
Example Usage
{
"command": "npm test",
"service": "frontend"
}
Response Format
The tool returns the command output with the following structure:
- Standard output (if any)
- Standard error (if any, prefixed with [stderr])
- Exit code
Usage
The server uses STDIO transport for MCP communication. When run with npx mcp-server-docker, it will:
- Parse environment variables for allowed containers
- Start the MCP server listening on stdin/stdout
- Log startup information to stderr
- Wait for MCP protocol messages
Security Notes
- This server requires access to the Docker socket - ensure Docker is running and accessible
- No command filtering is applied - relies on container isolation for security
- Commands timeout after 5 minutes by default
- Only allowed containers (configured via ALLOWED_CONTAINERS) can be accessed
Development
# Run in development mode
npm run dev
# Build TypeScript
npm run build
# Run tests
npm test
Troubleshooting
Common Errors
- "Cannot connect to Docker daemon": Ensure Docker is running and the socket is mounted
- "Service not found": Check that the service name exists in your docker-compose.yml
- "Command timed out": Command exceeded 5-minute timeout, consider breaking it into smaller operations
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.