https://github.com/yumafuu/clipboard-mcp
Cross-platform clipboard MCP server using Deno and mcp-helper
https://github.com/yumafuu/clipboard-mcp
clipboard cross-platform deno linux macos mcp mcp-server typescript windows
Last synced: 3 months ago
JSON representation
Cross-platform clipboard MCP server using Deno and mcp-helper
- Host: GitHub
- URL: https://github.com/yumafuu/clipboard-mcp
- Owner: yumafuu
- Created: 2025-08-26T04:54:32.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-08-26T07:21:04.000Z (10 months ago)
- Last Synced: 2025-08-26T07:21:35.423Z (10 months ago)
- Topics: clipboard, cross-platform, deno, linux, macos, mcp, mcp-server, typescript, windows
- Language: TypeScript
- Size: 11.7 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# clipboard-mcp
Cross-platform clipboard MCP server.
## Usage
Add to your MCP client config:
### macOS / Windows
```json
{
"mcpServers": {
"clipboard": {
"command": "deno",
"args": ["run", "-E", "--allow-run", "jsr:@yumafuu/clipboard-mcp"]
}
}
}
```
### Linux
```json
{
"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 content
- `set_clipboard`: Set clipboard content
## Requirements
- [Deno](https://deno.land/)
### Platform-specific requirements
- **macOS**: No additional requirements (uses built-in `pbpaste`/`pbcopy`)
- **Windows**: No additional requirements (uses built-in `clip`/`Get-Clipboard`)
- **Linux**: Install `xclip` or `xsel`
```bash
sudo apt install xclip # Ubuntu/Debian
sudo dnf install xclip # Fedora
sudo pacman -S xclip # Arch
```