MCP Easy Copy MCP server

Utility server that automatically reads Claude Desktop configuration files and presents all available MCP services in an easy-to-copy format for quick access and troubleshooting.
Back to servers
Provider
fisheep
Release date
Mar 22, 2025
Language
TypeScript
Package
Stats
175 downloads
3 stars

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.

Installation Options

Using npm (Recommended)

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"
      ]
    }
  }
}

Installing via Smithery

For automatic installation using Smithery:

npx -y @smithery/cli install @fisheepx/mcp-easy-copy --client claude

Manual Installation

  1. 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
  1. Configure Claude Desktop by editing the configuration file:

    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "mcp-easy-copy": {
      "command": "node",
      "args": [
         "/ABSOLUTE/PATH/TO/mcp_easy_copy/build/index.js"
      ]
    }
  }
}
  1. Restart Claude Desktop to apply changes

Using MCP Easy Copy

After installation, you can access the tool in two different ways:

Via the Tools Menu

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.

Via Direct Prompt

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

Troubleshooting

If you encounter issues:

  • Check the log files:

    • macOS: ~/Library/Logs/Claude/mcp-server-mcp-easy-copy.log
    • Windows: %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

How to add this MCP server to Cursor

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.

Adding an MCP server to Cursor globally

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"
            ]
        }
    }
}

Adding an MCP server to a project

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.

How to use the MCP server

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.

Want to 10x your AI skills?

Get a free account and learn to code + market your apps using AI (with or without vibes!).

Nah, maybe later