drio
Open app

MCP Server Docker TypeScript

Source

TypeScript version of MCP server Docker with remote connection support

Catalog onlyCatalog onlySTDIO

Overview

MCP Server Docker TypeScript is a TypeScript implementation of the MCP server designed for Docker, enabling remote connection support for managing Docker containers.

To use MCP Server Docker TypeScript, follow the setup instructions provided in the docs folder for installation and configuration. Once the server is running, you can interact with the MCP API to manage Docker containers across multiple hosts.

  • Manage Docker containers on multiple hosts - Support for HTTP, HTTPS, and SSH connections - TLS certificate support for secure Docker API access - Full TypeScript implementation - Zod schema validation for request parameters
  1. Managing Docker containers in a multi-host environment.
  2. Securely accessing Docker APIs using TLS certificates.
  3. Validating request parameters with Zod schema.

Add to your AI client

Use these steps to connect MCP Server Docker TypeScript in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-server-docker-ts-hellodimension": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-docker-ts-hellodimension"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-server-docker-ts-hellodimension": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-docker-ts-hellodimension"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-server-docker-ts-hellodimension": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-docker-ts-hellodimension"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-server-docker-ts-hellodimension": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-docker-ts-hellodimension"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-server-docker-ts-hellodimension": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-docker-ts-hellodimension"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-server-docker-ts-hellodimension": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-docker-ts-hellodimension"
      ]
    }
  }
}

FAQ

What programming language is used for this project?

The project is implemented in TypeScript.

How can I manage Docker containers with this server?

You can use the MCP API once the server is running to manage your Docker containers.

Is there documentation available for setup and usage?

Yes, detailed setup instructions and example prompts are available in the docs folder.

MCP Server Docker TypeScript — MCP Registry