Cross-platform clipboard MCP server.
Add to your MCP client config:
{
"mcpServers": {
"clipboard": {
"command": "deno",
"args": ["run", "-E", "--allow-run", "jsr:@yumafuu/clipboard-mcp"]
}
}
}
{
"mcpServers": {
"clipboard": {
"command": "deno",
"args": ["run", "-RE", "--allow-run", "jsr:@yumafuu/clipboard-mcp"]
}
}
}
Note: -R (read) is required on Linux to check if xclip
or xsel
commands exist
get_clipboard
: Get current clipboard contentset_clipboard
: Set clipboard content
- macOS: No additional requirements (uses built-in
pbpaste
/pbcopy
) - Windows: No additional requirements (uses built-in
clip
/Get-Clipboard
) - Linux: Install
xclip
orxsel
sudo apt install xclip # Ubuntu/Debian sudo dnf install xclip # Fedora sudo pacman -S xclip # Arch