MCP Installer

by bbangjooo

5 stars
285 downloads
Not rated
GitHub

About

MCP Installer is a tool that finds Model Context Protocol (MCP) servers from a registry, collects configuration needed to connect to them, and installs MCP servers to a local machine. It is designed for developers using Cursor or Claude clients.

Details

Author
bbangjooo
GitHub stars
5
Downloads
285
Categories
Other

- Finds MCP servers from a registry
- Collects configuration for server connections
- Installs MCP servers locally
- Supports Cursor and Claude clients
- Requires a Smithery API key
- Creates config files in standard OS‑specific paths

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name MCP Installer
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

What clients are supported?

Currently supported clients are cursor or claude.

What are the prerequisites?

Node.js v14.0.0 or higher, npm or yarn, and a Smithery API key (obtained from https://smithery.ai/).

Where are configuration files saved?

For Cursor: Windows %APPDATA%\Cursor\mcp.json, macOS ~/.cursor/mcp.json, Linux ~/.config/Cursor/mcp.json.
For Claude: Windows %APPDATA%\Claude\claude_desktop_config.json, macOS ~/Library/Application Support/Claude/claude_desktop_config.json, Linux ~/.config/Claude/claude_desktop_config.json.

What message indicates successful installation?

The server prints “✅ MCP server installed successfully.”

find_mcp

Find the MCP servers by given name

collect_config

Collect the config to be used for connection to mcp server

install_mcp

Install the MCP server on your local machine. You can install the MCP server with configuration.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "mcp installer": {
            "mcp-installer-bbangjooo": {
                "command": "npx",
                "args": [
                    "@bbangjo/mcp-installer",
                    "--client",
                    "<client-type>",
                    "--key",
                    "<your-smithery-api-key>"
                ]
            }
        }
    }
}

McpServers

{
    "mcp-installer-bbangjooo": {
        "command": "npx",
        "args": [
            "@bbangjo/mcp-installer",
            "--client",
            "<client-type>",
            "--key",
            "<your-smithery-api-key>"
        ]
    }
}

MCP Installer

smithery badge

Introduction

MCP Installer serves the following tools

- find-mcp: finding Model Context Protocol (MCP) servers from registry
- collect-config: collecting config to be used for connection to mcp server
- install-mcp: installing mcp server to your local machine

Getting Started

Prerequisites

- Node.js (v14.0.0 or higher)
- npm or yarn
- SMITHERY_API_KEY (https://smithery.ai/)

Installation

You can install MCP Installer using the following command:

npm install @bbangjo/mcp-installer
npx @bbangjo/mcp-installer --client <client-type> --key <your-smithery-api-key>

Where:

- <client-type>: Currently supported clients are 'cursor' or 'claude'
- <your-smithery-api-key>: Enter your Smithery API key

Example:

npx @bbangjo/mcp-installer --client cursor --key your_smithery_api_key_here

Upon successful installation, you will see the message "✅ MCP server installed successfully."

Note: Depending on the client type, the configuration file will be created in the following locations:

- Cursor:

- Windows: %APPDATA%\Cursor\mcp.json
- macOS: ~/.cursor/mcp.json
- Linux: ~/.config/Cursor/mcp.json

- Claude:
- Windows: %APPDATA%\Claude\claude_desktop_config.json
- macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
- Linux: ~/.config/Claude/claude_desktop_config.json

Local setup

1. Install dependencies

npm install

2. Set up environment variables
Create a .env file in the project root directory and add the following:

SMITHERY_API_KEY=your_api_key_here

3. Running the server:

npm run build
node build/index.js

The server will display the message "MCP Finder Server running on stdio" when successfully started.

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.