MCP Easy Copy is a lightweight Model Context Protocol server designed to simplify how you interact with Claude Desktop. It automatically collects all available MCP services from your configuration and presents them in an easy-to-copy format at the top of your tools list, eliminating the need to remember service names or search through configuration files.
Install the package globally:
npm install -g @fishes/mcp-easy-copy
Then add it to your Claude Desktop configuration file:
{
"mcpServers": {
"mcp-easy-copy": {
"command": "npx",
"args": [
"-y",
"@fishes/mcp-easy-copy"
]
}
}
}
For automatic installation using Smithery:
npx -y @smithery/cli install @fisheepx/mcp-easy-copy --client claude
git clone https://github.com/f-is-h/mcp-easy-copy.git
cd mcp-easy-copy
npm install
npm run build
Configure Claude Desktop by editing the configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"mcp-easy-copy": {
"command": "node",
"args": [
"/ABSOLUTE/PATH/TO/mcp_easy_copy/build/index.js"
]
}
}
}
After installation, you can access the tool in two different ways:
Simply click the hammer icon in Claude Desktop and select the MCP Easy Copy service. It will always appear at the top of your tools list and display all available services in its description.
You can ask Claude to use the service with prompts like:
Please list all MCP services that are available to you
Or explicitly invoke it:
Please use _________mcp-easy-copy_________ to show me all available MCP services
If you encounter issues:
Check the log files:
~/Library/Logs/Claude/mcp-server-mcp-easy-copy.log
%APPDATA%\Claude\logs\mcp-server-mcp-easy-copy.log
Verify your claude_desktop_config.json
contains valid JSON
Ensure Node.js is properly installed by running node --version
Always restart Claude Desktop after making configuration changes
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.