mcp-server-synology vs git
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-synology by atom2ueki | git by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 99 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 75 |
| Official | — | ✓ |
| Categories | File SystemCloud StorageMonitoring | Developer ToolsFile SystemProductivity |
| Language | Python | TypeScript |
| Last commit | this month | this month |
mcp-server-synology · Summary
MCP server for Synology NAS enabling AI assistants to manage files, downloads, and system operations through secure API integration.
git · Summary
A comprehensive MCP server for Git operations with status viewing, diffing, commits, and branch management.
mcp-server-synology · Use cases
- Enable AI assistants to manage files on Synology NAS through natural language commands
- Automate download task management through various AI clients
- Monitor NAS system health and receive status reports through AI interfaces
git · Use cases
- AI-powered Git repository analysis and management
- Automated code review through diff examination
- Branch management and workflow automation
mcp-server-synology · Install
Installation
Using Docker (Recommended)
- Clone the repository:
git clone https://github.com/atom2ueki/mcp-server-synology.git
cd mcp-server-synology- Create environment file:
cp env.example .env- Configure your
.envfile with your Synology NAS credentials:
SYNOLOGY_URL=http://192.168.1.100:5000
SYNOLOGY_USERNAME=your_username
SYNOLOGY_PASSWORD=your_password
AUTO_LOGIN=true
VERIFY_SSL=false- Run with Docker:
docker-compose up -dClaude Desktop Configuration
Add to your Claude Desktop configuration file:
{
"mcpServers": {
"synology": {
"command": "docker-compose",
"args": [
"-f", "/path/to/your/mcp-server-synology/docker-compose.yml",
"run", "--rm", "synology-mcp"
],
"cwd": "/path/to/your/mcp-server-synology"
}
}
}git · Install
Using uv (recommended)
When using [uv](https://docs.astral.sh/uv/) no specific installation is needed. Use [uvx](https://docs.astral.sh/uv/guides/tools/) to directly run the server:
uvx mcp-server-git --repository path/to/git/repoUsing PIP
Alternatively you can install mcp-server-git via pip:
pip install mcp-server-gitAfter installation, run it as:
python -m mcp_server_gitClaude Desktop Configuration
Add to your claude_desktop_config.json:
"mcpServers": {
"git": {
"command": "uvx",
"args": ["mcp-server-git", "--repository", "path/to/git/repo"]
}
}