
Company News
Free Business Plan Upgrades for Open Source Maintainers
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.
@standardbeagle/mcp-clip
Advanced tools
High-performance MCP server for clipboard access with WSL2 support
A high-performance, lock-free Model Context Protocol (MCP) server that provides clipboard access for AI assistants. Specifically designed to solve the VSCode + WSL2 image clipboard limitation when using Claude.
VSCode + WSL2 + Claude Image Clipboard Issue: When running Claude in VSCode on Windows with WSL2, pasting images from the clipboard doesn't work due to the sandboxed environment. This MCP server provides a bridge to access Windows clipboard content (including images) from within the WSL2 environment.
npm install -g @standardbeagle/mcp-clip
go install github.com/standardbeagle/mcp-clip@latest
git clone https://github.com/standardbeagle/mcp-clip.git
cd mcp-clip
go build -o mcp-clip
sudo cp mcp-clip /usr/local/bin/
Add to your Claude Desktop claude_desktop_config.json:
{
"mcpServers": {
"clipboard": {
"command": "mcp-clip",
"args": []
}
}
}
Config file locations:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json~/.config/Claude/claude_desktop_config.json# In your WSL2 terminal
npm install -g @standardbeagle/mcp-clip
Add to your VSCode settings or workspace .vscode/settings.json:
{
"claude-dev.mcpServers": {
"clipboard": {
"command": "mcp-clip",
"args": []
}
}
}
Ensure PowerShell is accessible from WSL2:
# Test PowerShell access
/mnt/c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe -Command "Get-Clipboard"
read_clipboardReads current clipboard content with automatic format detection.
Example usage in Claude:
"Read my clipboard and analyze the content"
Supported formats:
Large content handling:
The server sends real-time notifications when clipboard content changes:
{
"method": "notifications/resources/updated",
"params": {
"uri": "clipboard://current"
}
}
This allows Claude to proactively know when new content is available without polling.
MCP_DEBUG=1 - Enable detailed debug loggingMCP_CLEANUP_TTL=2h - Set temp file cleanup TTL (default: 1h)MCP_DEBUG=1 mcp-clip
Shows detailed information about:
mcp-clip test
# Run tests with race detector
go test -race -v ./...
# Build with race detector
go build -race .
PowerShell not found:
# Install Windows PowerShell in WSL2
sudo apt update && sudo apt install powershell
Permission denied:
# Add Windows PowerShell to PATH
echo 'export PATH="/mnt/c/Windows/System32/WindowsPowerShell/v1.0:$PATH"' >> ~/.bashrc
source ~/.bashrc
Clipboard empty in WSL2:
# Test Windows clipboard access
powershell.exe "Get-Clipboard"
MCP connection failed:
mcp-clip is in your PATHLarge images not working:
MCP_DEBUG=1Performance issues:
git clone https://github.com/standardbeagle/mcp-clip.git
cd mcp-clip
go mod download
go build -race .
go test -race -v ./...
go test -race -v ./...MIT License - see LICENSE file for details.
FAQs
High-performance MCP server for clipboard access with WSL2 support
We found that @standardbeagle/mcp-clip demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.