MCP Easy Copy is a Model Context Protocol server that simplifies working with Claude Desktop by automatically discovering and providing easy access to all configured MCP services. It helps solve the problem of remembering service names by reading your Claude configuration file and presenting available services in an easy-to-copy format at the top of your tools list.
Install the package globally:
npm install -g @fishes/mcp-easy-copy
Then add it to your Claude Desktop configuration:
{
"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
Clone the repository and build the project:
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 its configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
Add this configuration:
{
"mcpServers": {
"mcp-easy-copy": {
"command": "node",
"args": [
"/ABSOLUTE/PATH/TO/mcp_easy_copy/build/index.js"
]
}
}
}
Restart Claude Desktop
Once installed, you can access the tool in two ways:
Simply click the hammer icon in Claude Desktop. The MCP Easy Copy service will appear at the top of the list, showing all available services in its description.
Ask Claude directly:
Please list all MCP services that are available to you
Or explicitly request the tool:
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 configuration file contains valid JSON
Ensure Node.js is properly installed by running node --version
Remember to restart Claude Desktop after making any configuration changes
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "mcp-easy-copy" '{"command":"npx","args":["-y","@fishes/mcp-easy-copy"]}'
See the official Claude Code MCP documentation for more details.
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 > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"mcp-easy-copy": {
"command": "npx",
"args": [
"-y",
"@fishes/mcp-easy-copy"
]
}
}
}
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 explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"mcp-easy-copy": {
"command": "npx",
"args": [
"-y",
"@fishes/mcp-easy-copy"
]
}
}
}
3. Restart Claude Desktop for the changes to take effect