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
Setup instructions
Provider
fisheep
Release date
Mar 22, 2025
Language
TypeScript
Package
Stats
241 downloads
3 stars

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.

Installation Options

Installing via npm (Recommended)

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

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

    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %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"
          ]
        }
      }
    }
    
  3. Restart Claude Desktop

Using MCP Easy Copy

Once installed, you can access the tool in two ways:

Via the Tools Menu

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.

Via a Prompt

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

Troubleshooting

If you encounter issues:

  1. Check the log files:

    • macOS: ~/Library/Logs/Claude/mcp-server-mcp-easy-copy.log
    • Windows: %APPDATA%\Claude\logs\mcp-server-mcp-easy-copy.log
  2. Verify your Claude configuration file contains valid JSON

  3. Ensure Node.js is properly installed by running node --version

  4. Remember to restart Claude Desktop after making any configuration changes

How to install this MCP server

For Claude Code

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.

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

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 explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.

For Claude Desktop

To add this MCP server to Claude Desktop:

1. Find your configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.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

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