Clipboard Server
БесплатноНе проверенRead, write, and inspect the system clipboard across macOS, Linux (X11/Wayland), and Windows via MCP.
Описание
Read, write, and inspect the system clipboard across macOS, Linux (X11/Wayland), and Windows via MCP.
README
@cyanheads/clipboard-mcp-server
Read, write, and inspect the system clipboard across macOS, Linux (X11/Wayland), and Windows via MCP. STDIO or Streamable HTTP.
Overview
The system clipboard across macOS, Linux (X11/Wayland), and Windows. Read, write, and inspect text, HTML, RTF, and image content from any MCP client. Runs as a stdio process or a local Streamable HTTP server.
Tools
| Tool | Description |
|---|---|
clipboard_read |
Read clipboard contents in a specified format (text, HTML, RTF, image, or auto-select richest) |
clipboard_write |
Write plain text or HTML to the clipboard, replacing current contents, or clear it outright |
clipboard_inspect |
List available clipboard formats and byte sizes without reading full content |
Capability reference
clipboard_read tool
autoreturns the richest format explicitly present — priority: image > html > rtf > text;formatrequests a specific one instead- Size limits: 512 KB for text/HTML/RTF, 5 MB for images (raw bytes before base64 expansion)
- Content above the limit reads via
offset/limitslicing — pass both to read a bounded window (limitis at least 4, clamped to the format's size limit) and follow the returnednextOffsetuntilcompleteistrue imagereturns base64-encoded PNG data, withwidth/heightwhenever the capture carries a readable PNG header- Typed errors:
format_unavailablewhen the requested format isn't on the clipboard,content_too_largewhen nooffset/limitwas given and content exceeds the size limit
clipboard_write tool
- Exactly one of
contentorclear: true— an emptycontent, both, or neither is rejected as invalid input format: "html"writes HTML; macOS and Windows also publish an auto-generated, tag-stripped plain-text fallback, while Linux X11 and Wayland publish onlytext/htmlclear: trueremoves every representation instead of writing (needsxselalongsidexclipon Linux X11) and returnscleared: true,byteSize: 0, noformat- Returns
previousContent— the plain text on the clipboard immediately before the write or clear, for undoing an unintended overwrite — absent when the clipboard was empty, held no text representation, or that text exceeded the 512 KB read limit - Size limit: 1 MB, past which a typed
content_too_largeerror is returned - Not registered when
CLIPBOARD_READ_ONLYis set, which gates clearing along with writing
clipboard_inspect tool
- Returns
primaryFormat(richest present — image > html > rtf > text — orempty) andavailableFormats, the formats available to pass toclipboard_read - Returns
rawTypes— every raw platform type identifier with byte size (UTIs on macOS, TARGETS on X11/Wayland, format names on Windows); an entry whose size couldn't be measured carriesmeasurementFailed: trueand nobytes, never a false zero - Typed
inspect_unreadableerror when the platform helper's output cannot be read, instead of reporting an empty clipboard
Features
Built on @cyanheads/mcp-ts-core: stdio and Streamable HTTP transports, pluggable auth (none / jwt / oauth), swappable storage (in-memory, filesystem, Supabase, Cloudflare KV/R2/D1), structured logging with optional OpenTelemetry tracing.
Clipboard-specific:
- Cross-platform backend detection at startup — macOS (pbcopy/pbpaste + osascript), Linux X11 (xclip), Linux Wayland (wl-clipboard), Windows (PowerShell 5.1+)
- Semantic format mapping — platform-native type identifiers (UTIs, TARGETS, Windows format names) mapped to
text,html,rtf,imageacross all backends - Platform-aware HTML writes — macOS and Windows publish HTML plus a stripped plain-text fallback; Linux X11 and Wayland publish
text/htmlonly - Image support — macOS and Windows backends decode PNG bytes and return width/height alongside base64 content
Agent-friendly output:
- Size-guarded I/O — reads and writes over the format limit fail with a typed
content_too_largeerror carrying byte/limit metadata, rather than truncating silently - Bounded continuation —
clipboard_readslices oversized content withoffset/limitandnextOffsetinstead of forcing a single all-or-nothing read - Undo support —
clipboard_writereturnspreviousContentso an unintended overwrite can be reverted - Discriminated failure —
format_unavailable,content_too_large, andinspect_unreadableare typed reasons with recovery hints, not generic errors
Getting started
Add the following to your MCP client configuration file.
{
"mcpServers": {
"clipboard-mcp-server": {
"type": "stdio",
"command": "bunx",
"args": ["@cyanheads/clipboard-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info"
}
}
}
}
Or with npx (no Bun required):
{
"mcpServers": {
"clipboard-mcp-server": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@cyanheads/clipboard-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info"
}
}
}
}
For Streamable HTTP, set the transport and start the server:
MCP_TRANSPORT_TYPE=http MCP_HTTP_PORT=3010 bun run start:http
# Server listens at http://localhost:3010/mcp
Prerequisites
Bun 1.4.0+ or Node.js 24+.
macOS: No additional tools required — pbcopy, pbpaste, and osascript are built in.
Linux X11: xclip must be installed. xsel is additionally required for clipboard_write's clear mode — it is the only one of the two that can hand the selection back rather than owning an empty one.
apt install xclip xsel # Debian/Ubuntu
pacman -S xclip xsel # Arch
Linux Wayland: wl-clipboard must be installed.
apt install wl-clipboard # Debian/Ubuntu
pacman -S wl-clipboard # Arch
Windows: PowerShell 5.1+ (built-in on Windows 10 and later).
Configuration
| Variable | Description | Default |
|---|---|---|
MCP_TRANSPORT_TYPE |
Transport: stdio or http. |
stdio |
MCP_HTTP_PORT |
Port for HTTP server. | 3010 |
MCP_HTTP_HOST |
Hostname for HTTP server. | 127.0.0.1 |
MCP_HTTP_ENDPOINT_PATH |
Endpoint path for the HTTP server. | /mcp |
MCP_HTTP_MAX_BODY_BYTES |
Max inbound JSON-RPC request body, in bytes. Raised above the framework's 1 MiB default so a full-size clipboard_write survives JSON escaping (worst case costs 6 wire bytes per source byte). 0 disables the guard and defers to the reverse proxy. |
7340032 |
MCP_SESSION_MODE |
HTTP session mode: auto, stateful, or stateless. auto resolves to stateful. This server defaults to stateless — it keeps no per-session state. |
stateless |
MCP_AUTH_MODE |
Auth mode: none, jwt, or oauth. |
none |
MCP_LOG_LEVEL |
Log level (debug, info, notice, warning, error). |
info |
OTEL_ENABLED |
Enable OpenTelemetry instrumentation. | false |
CLIPBOARD_READ_ONLY |
Serve the clipboard read-only. When true, clipboard_write is not registered — absent from tools/list and uncallable, though still shown in a disabled state on the manifest and landing page. Accepts true/false/1/0/yes/no/on/off; an unrecognized value fails startup. |
false |
See .env.example for the full list of optional overrides.
Running the server
Local development
# One-time build
bun run rebuild
# Run the built server
bun run start:stdio
# or
bun run start:http
Checks and tests
bun run devcheck # Lint, format, typecheck, security
bun run test # Vitest test suite
Project structure
| Path | Purpose |
|---|---|
src/index.ts |
Entry point — registers tools via createApp() |
src/mcp-server/tools/definitions/ |
Tool definitions: clipboard_read, clipboard_write, clipboard_inspect |
src/services/clipboard/ |
Platform backends (macOS, Linux X11, Wayland, Windows) and service facade |
tests/ |
Vitest tests for tools and backends |
framework-skills/ |
Agent workflow skills (add-tool, field-test, polish-docs-meta, etc.) |
Development guide
See CLAUDE.md for the full developer protocol — tool patterns, service patterns, error handling, logging conventions, and the checklist for shipping changes. The short version:
- Handlers throw, framework catches — no
try/catchin tool logic - Use
ctx.logfor request-scoped logging - No Docker — this server needs direct host OS access (pbcopy/pbpaste, JXA/NSPasteboard, xclip, wl-clipboard, PowerShell), none of which work inside a container
Contributing
Issues welcome at github.com/cyanheads/clipboard-mcp-server. Run checks and tests before submitting:
bun run devcheck
bun run test
License
Apache 2.0 — see LICENSE.
Установка Clipboard Server
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/cyanheads/clipboard-mcp-serverFAQ
Clipboard Server MCP бесплатный?
Да, Clipboard Server MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Clipboard Server?
Нет, Clipboard Server работает без API-ключей и переменных окружения.
Clipboard Server — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Clipboard Server в Claude Desktop, Claude Code или Cursor?
Открой Clipboard Server на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
GitHub
PRs, issues, code search, CI status
автор: GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
автор: mcpdotdirectAmap Maps Mcp Server
MCP server for using the AMap Maps API
автор: duxiaohuiSupabase
Database, auth and storage
автор: SupabaseEverything
Reference / test server with prompts, resources, and tools.
Git
Tools to read, search, and manipulate Git repositories.
Sequential Thinking
Dynamic and reflective problem-solving through thought sequences.
Time
Time and timezone conversion capabilities.
Compare Clipboard Server with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
