yumafuu/clipboard-mcp
3.2
If you are the rightful owner of clipboard-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.
Cross-platform clipboard MCP server using Deno.
clipboard-mcp
Cross-platform clipboard MCP server.
Usage
Add to your MCP client config:
macOS / Windows
{
"mcpServers": {
"clipboard": {
"command": "deno",
"args": ["run", "-E", "--allow-run", "jsr:@yumafuu/clipboard-mcp"]
}
}
}
Linux
{
"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
Tools
get_clipboard: Get current clipboard contentset_clipboard: Set clipboard content
Requirements
Platform-specific requirements
- macOS: No additional requirements (uses built-in
pbpaste/pbcopy) - Windows: No additional requirements (uses built-in
clip/Get-Clipboard) - Linux: Install
xcliporxselsudo apt install xclip # Ubuntu/Debian sudo dnf install xclip # Fedora sudo pacman -S xclip # Arch