Synology Docker MCP Server

Synology Docker MCP Server

Enables managing Docker containers and Docker Compose projects on Synology NAS via SSH, with auto-privilege escalation and full compatibility with Synology Container Manager.

Category
Visit Server

README

Synology Docker MCP Server

(Scroll down for English version / 英文版本在下方)

🇨🇳 中文说明 (Chinese Version)

这是一个专门为群晖 (Synology NAS) 设计的 Model Context Protocol (MCP) 服务器。它旨在通过大语言模型直接管理、配置和调试群晖 Container Manager 中的 Docker 容器和 Docker Compose 项目。

✨ 核心功能与亮点

  • 基于 SSH 的安全管理: 直接通过 SSH 与您的群晖 NAS 进行通信,安全执行原生命令,彻底免除对外暴露 Docker TCP 接口的风险。
  • 自动提权系统 (Auto-Privilege Escalation): 自动注入凭证静默执行 sudo,完美解决群晖管理员账号在执行 docker 时常见的 Permission Denied 权限壁垒。
  • 群晖 Container Manager 完美兼容: 原生支持并强制使用 docker-compose -p 标签,确保通过此 MCP 服务器启动或更新的项目能够与群晖自带网页端的项目界面完美同步(维持绿点健康状态)。
  • 全方位工具集:
    • synology_docker_ps: 查看所有运行中的容器。
    • synology_docker_logs: 获取并追踪容器日志。
    • synology_docker_manage: 控制容器的启动、停止、重启或移除。
    • synology_project_list: 自动搜索并发现 /volume1/docker/ 目录下的所有项目。
    • synology_project_manage: 原生执行项目的 Pull、Up、Down 或 Restart 指令。
    • synology_read_file / synology_write_file: 远程读取或修改 .envdocker-compose.yml 配置文件。

🔒 安全加固记录 (v1.1.0)

漏洞 修复方案
密码特殊字符展开($/反引号) echo "..." 改为 printf '%s\n' '...',避免 shell 展开
命令注入(容器名/项目名/路径拼接) 所有用户输入经 shQuote() 单引号包裹后再拼接命令
action 参数未验证 代码层白名单校验,独立于 schema enum
路径遍历(/etc/shadow 等) synology_read_file / synology_write_file 限制在 NAS_DOCKER_DIR 内,拒绝含 .. 的路径
tail 参数注入 强制正整数,上限 10000,默认 100
SSH 连接无超时 添加 readyTimeout: 30000

🚀 快速上手 (面向终端用户)

  1. 开启群晖 SSH 服务: 前往 控制面板 -> 终端机和 SNMP 并勾选 启动 SSH 功能

  2. 接入 MCP 客户端 (例如 Claude Desktop 或 Cursor): 您不需要克隆代码或安装任何东西。只需将以下内容添加到客户端的 MCP 配置文件 JSON 中,客户端会自动通过 npx 帮您拉取并运行最新版代码:

    {
      "mcpServers": {
        "synology-docker": {
          "command": "npx",
          "args": [
            "-y",
            "synology-docker-mcp"
          ],
          "env": {
            "NAS_HOST": "192.168.1.xxx",
            "NAS_PORT": "22",
            "NAS_USER": "your_admin_account",
            "NAS_PASSWORD": "your_admin_password",
            "NAS_DOCKER_DIR": "/volume1/docker"
          }
        }
      }
    }
    

🛠️ 本地开发 (面向开发者)

如果您希望修改此项目的源代码:

  1. 克隆并配置: 复制项目中的 .env.example 并重命名为 .env,填入您的 NAS 连接信息。

  2. 安装依赖并构建:

    npm install
    npm run build
    
  3. 测试运行:

    npm start
    

🇬🇧 English Version

This is a Model Context Protocol (MCP) server specifically designed to manage, configure, and debug Docker containers and Docker Compose projects on Synology NAS devices.

✨ Features & Highlights

  • SSH-Based Management: Communicates with your Synology NAS directly via SSH, ensuring secure execution of native commands without needing to expose the Docker TCP socket.
  • Auto-Privilege Escalation: Automatically injects credentials to run sudo silently, bypassing the Permission Denied issues commonly faced by Synology administrator accounts.
  • Synology Container Manager Compatibility: Native support for docker-compose -p, ensuring that projects started or updated via this MCP server perfectly align with the Synology Container Manager GUI (maintaining the green status indicator).
  • Comprehensive Toolset:
    • synology_docker_ps: View all running containers.
    • synology_docker_logs: Stream container logs.
    • synology_docker_manage: Start, stop, restart, or remove containers.
    • synology_project_list: Discover projects mapped in /volume1/docker/.
    • synology_project_manage: Pull, up, down, or restart Docker Compose projects natively.
    • synology_read_file / synology_write_file: Edit .env and docker-compose.yml configurations remotely.

🔒 Security Hardening (v1.1.0)

Vulnerability Fix
Password shell expansion ($, backticks) Replaced echo "..." with printf '%s\n' '...' to prevent shell expansion
Command injection (container/project name/path concatenation) All user inputs wrapped with shQuote() before shell concatenation
Unvalidated action parameter Code-level whitelist enforced independently of schema enum
Path traversal (e.g. reading /etc/shadow) synology_read_file / synology_write_file restricted to NAS_DOCKER_DIR; paths with .. segments rejected
tail parameter injection Enforced positive integer, capped at 10000, defaults to 100
SSH connection hangs indefinitely Added readyTimeout: 30000

🚀 Setup Instructions

  1. Enable SSH on Synology NAS: Go to Control Panel -> Terminal & SNMP and check Enable SSH service.

  2. Configure Credentials: Copy .env.example to .env and fill in your NAS connection details:

    NAS_HOST=192.168.1.xxx
    NAS_PORT=22
    NAS_USER=your_admin_account
    NAS_PASSWORD=your_admin_password
    NAS_DOCKER_DIR=/volume1/docker
    
  3. Install Dependencies & Build:

    npm install
    npm run build
    
  4. Connect to MCP Client (e.g. Claude Desktop / Cursor): While you can use a local node path if built locally, the highly recommended method is to use npx (which pulls directly from npm, requiring no local cloning). Add the following to your MCP configuration JSON:

    {
      "mcpServers": {
        "synology-docker": {
          "command": "npx",
          "args": [
            "-y",
            "synology-docker-mcp"
          ],
          "env": {
            "NAS_HOST": "192.168.1.xxx",
            "NAS_PORT": "22",
            "NAS_USER": "your_admin_account",
            "NAS_PASSWORD": "your_admin_password",
            "NAS_DOCKER_DIR": "/volume1/docker"
          }
        }
      }
    }
    

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured