zzarger/clipboard-mcp-server
3.2
If you are the rightful owner of clipboard-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The Clipboard MCP Server is a Model Context Protocol server that provides clipboard access tools for Windows, allowing users to read and write clipboard contents programmatically.
Tools
2
Resources
0
Prompts
0
Clipboard MCP Server
An MCP (Model Context Protocol) server that provides clipboard access tools for Windows.
Features
- read_clipboard: Read current clipboard contents
- write_clipboard: Write text to clipboard
Installation
- Install dependencies:
npm install
- Build the project:
npm run build
Configuration for Claude Code
Add this to your Claude Code MCP configuration:
{
"mcpServers": {
"clipboard": {
"command": "node",
"args": ["C:\\Users\\zainz\\coding\\clipboard-mcp-server\\dist\\index.js"],
"env": {}
}
}
}
Usage
Once configured, you can use these tools in Claude Code:
read_clipboard
: Returns the current clipboard contentswrite_clipboard
: Writes text to the clipboard
Running Standalone
For testing purposes, you can run the server directly:
npm start