Clipboard Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Clipboard Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A Model Context Protocol (MCP) server that provides system clipboard read and write capabilities for AI assistants like Claude.
Linux users must install clipboard utilities before using this package:
# For X11 (most common)
sudo apt install xclip xsel
# For Wayland
sudo apt install wl-clipboard
# Other distributions
sudo dnf install xclip xsel # Fedora/RHEL
sudo pacman -S xclip xsel # Arch LinuxWSL users: Usually works out of the box using Windows clipboard tools. If you encounter issues, install xclip xsel as above.
macOS and Windows users: No additional dependencies needed!
pip install clipboard-mcpConsider using a virtual environment to avoid dependency conflicts:
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install clipboard-mcpRun directly with uv (no pip installation required):
# One-time execution
uv run --from clipboard-mcp clipboard-mcp
# Or clone and run from source
git clone https://github.com/gabiteodoru/clipboard-mcp.git
cd clipboard-mcp
uv run clipboard-mcpgit clone https://github.com/gabiteodoru/clipboard-mcp.git
cd clipboard-mcp
pip install -e .After pip installation:
claude mcp add --scope user clipboard-mcp clipboard-mcpWith uv (no installation):
claude mcp add --scope user clipboard-mcp "uv run --from clipboard-mcp clipboard-mcp"Or from source directory:
claude mcp add --scope user clipboard-mcp "uv run /path/to/clipboard-mcp"Add to your Claude Desktop configuration file.
Configuration file locations:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json~/.config/Claude/claude_desktop_config.jsonAfter pip installation:
{
"mcpServers": {
"clipboard": {
"command": "clipboard-mcp"
}
}
}With uv (no installation):
{
"mcpServers": {
"clipboard": {
"command": "uv",
"args": [
"run",
"--from",
"clipboard-mcp",
"clipboard-mcp"
]
}
}
}From source directory:
{
"mcpServers": {
"clipboard": {
"command": "uv",
"args": [
"--directory",
"/absolute/path/to/clipboard-mcp",
"run",
"clipboard-mcp"
]
}
}
}Once configured, Claude will have access to these tools:
With this MCP server running, you can ask Claude to:
This MCP server uses the pyperclip library to interact with your system clipboard. It provides a secure bridge between Claude and your clipboard through the Model Context Protocol.
Problem: Missing system clipboard utilities
Solution: Install the required tools:
# For X11
sudo apt install xclip xsel
# For Wayland
sudo apt install wl-clipboard
# Or use PyQt5 as fallback (larger dependency)
pip install PyQt5Problem: No display server available (e.g., SSH session, Docker)
Solution: Clipboard operations require a display server. For headless environments, consider:
ssh -X user@hostTest the installation manually:
# Test reading clipboard (copy something first)
python -c "import pyperclip; print(pyperclip.paste())"
# Test writing to clipboard
python -c "import pyperclip; pyperclip.copy('Hello from Python')"If you encounter issues:
| Platform | Requirements | Status |
|---|---|---|
| macOS | Built-in (pbcopy/pbpaste) | ✅ No setup needed |
| Windows | Built-in (clip.exe, PowerShell) | ✅ No setup needed |
| Linux X11 | xclip or xsel | ⚠️ Manual install required |
| Linux Wayland | wl-clipboard | ⚠️ Manual install required |
| WSL | Windows clipboard tools | ✅ Usually pre-installed |
MIT
Contributions are welcome! Please feel free to submit a Pull Request.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.