drio
Open app

Docker MCP Servers

Source

Catalog onlyCatalog onlySTDIO

Overview

Docker MCP Servers is a set of Docker containers designed to facilitate integration with various services like Slack, Notion, and GitHub through a microservices architecture.

To use Docker MCP Servers, you need to run the provided Docker commands with the necessary environment variables for each service you want to integrate with.

  • Easy integration with Slack, Notion, and GitHub using Docker containers. - Simple command-line interface for running services. - Environment variable configuration for secure token management.
  1. Automating notifications in Slack from Notion updates.
  2. Syncing tasks between Notion and GitHub.
  3. Running microservices for collaborative projects.

Add to your AI client

Use these steps to connect Docker MCP Servers 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": {
    "docker-mcp-servers-tatsuiman": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-docker-mcp-servers-tatsuiman"
      ]
    }
  }
}

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": {
    "docker-mcp-servers-tatsuiman": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-docker-mcp-servers-tatsuiman"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

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

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What services can I integrate with Docker MCP Servers?

You can integrate with Slack, Notion, and GitHub.

Do I need to have Docker installed?

Yes, Docker is required to run the MCP Servers.

Is there any cost associated with using Docker MCP Servers?

No, Docker MCP Servers are open-source and free to use.