Cursor MCP Installer

Cursor MCP Installer

matthewdcage

Automates the installation and configuration of MCP servers in Cursor IDE by handling environment setup and updating configuration files.

Streamlines MCP server installation and configuration within Cursor IDE, automatically handling environment setup and creating necessary configuration entries in mcp.json.

74967 views9Local (stdio)

What it does

  • Install MCP servers via npx or uvx
  • Install local MCP servers from cloned repositories
  • Add MCP servers to Cursor's configuration automatically
  • Handle environment setup during installation
  • Update mcp.json configuration entries

Best for

Cursor IDE users adding new MCP serversDevelopers setting up MCP development environmentsTeams standardizing MCP server configurations
Streamlines Cursor IDE setupAutomatic configuration management

About Cursor MCP Installer

Cursor MCP Installer is a community-built MCP server published by matthewdcage that provides AI assistants with tools and capabilities via the Model Context Protocol. Cursor MCP Installer streamlines MCP server setup in Cursor IDE by automating environment configuration and mcp.json ent It is categorized under developer tools. This server exposes 3 tools that AI clients can invoke during conversations and coding sessions.

How to install

You can install Cursor MCP Installer in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.

License

Cursor MCP Installer is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.

Tools (3)

install_repo_mcp_server

Install an MCP server via npx or uvx

install_local_mcp_server

Install an MCP server whose code is cloned locally on your computer

add_to_cursor_config

Add any MCP server to Cursor's configuration

Cursor MCP Installer

   ___         __  __    ___  __            ___   ___ 
  / __\/\ /\  /__\/ _\  /___\/__\  /\/\    / __\ / _ \
 / /  / / \ \/ \//\ \  //  // \// /    \  / /   / /_)/
/ /___\ \_/ / _  \_\ \/ \_// _  \/ /\/\ \/ /___/ ___/ 
\____/ \___/\/ \_/\__/\___/\/ \_/\/    \/\____/\/     
                                                      
  _____    __  __  _____  _      __    __    __  __   
  \_   \/\ \ \/ _\/__   \/_\    / /   / /   /__\/__\  
   / /\/  \/ /\ \   / /\//_\\  / /   / /   /_\ / \//  
/\/ /_/ /\  / _\ \ / / /  _  \/ /___/ /___//__/ _  \  
\____/\_\ \/  \__/ \/  \_/ \_/\____/\____/\__/\/ \_/  

+---------------------------------------------+
| ๐Ÿš€ CURSOR MCP INSTALLER ๐Ÿš€                 |
| โœจ Magically install MCP servers with ease โœจ |
+---------------------------------------------+

A Model Context Protocol (MCP) server for installing and configuring other MCP servers within Cursor IDE.

License: MIT npm version MCP Compatible Cursor IDE npm downloads

LinkedIn

๐Ÿ“ข NOW AVAILABLE ON NPM! Install with a simple npm install -g cursor-mcp-installer-free command or use directly with npx cursor-mcp-installer-free or uvx cursor-mcp-installer-free!

๐Ÿ”„ Latest Updates (v0.1.3): Improved path handling for all MCP server installations, better OpenAPI schema detection, and more robust server discovery in local directories. Thanks to @ItzAmirreza for submitting the initial installation path handling issue. See CHANGELOG.md for details.

Quick Start Guide

Step 1: Add to Cursor Configuration

Choose one of these methods to add the MCP Installer to your Cursor configuration:

Using npx (Easiest - No Installation Required)

Add this to your ~/.cursor/mcp.json file (create it if it doesn't exist):

{
  "mcpServers": {
    "MCP Installer": {
      "command": "npx",
      "type": "stdio",
      "args": [
        "cursor-mcp-installer-free@0.1.3",
        "index.mjs"
      ]
    }
  }
}

Using npm (Global Installation)

npm install -g cursor-mcp-installer-free@0.1.3

Then add to your ~/.cursor/mcp.json:

{
  "mcpServers": {
    "MCP Installer": {
      "command": "cursor-mcp-installer-free",
      "type": "stdio",
      "args": [
        "index.mjs"
      ]
    }
  }
}

Step 2: Restart Cursor

Close and reopen Cursor to apply the configuration changes.

Step 3: Use Claude to Install Servers

Ask Claude to install any MCP server for you:

Install the web search MCP server

or

Install the MCP server for OpenAPI schema exploration with my-schema.yaml

Step 4: What You'll See When Installed

Once properly installed and Cursor is restarted, you'll see the MCP Installer available in the sidebar when using Claude:

MCP Installer Interface

The MCP Installer provides three main tools:

  • install_repo_mcp_server: Install MCP servers from npm packages or repositories
  • install_local_mcp_server: Install MCP servers from local directories
  • add_to_cursor_config: Add custom MCP server configurations

Features

  • Install MCP servers from npm packages
  • Install MCP servers from local directories
  • Configure MCP servers for Cursor
  • Add custom MCP server configurations

Prerequisites

Before using this tool, you need to have installed:

Installation

There are several ways to install and use the Cursor MCP Installer:

1. Using npm (Recommended)

npm install -g cursor-mcp-installer-free@0.1.3

After installation, add it to your Cursor MCP configuration file:

{
  "mcpServers": {
    "MCP Installer": {
      "command": "cursor-mcp-installer-free",
      "type": "stdio",
      "args": [
        "index.mjs"
      ]
    }
  }
}

2. Using npx (No Installation Required)

You can use npx to run the package without installing it globally:

{
  "mcpServers": {
    "MCP Installer": {
      "command": "npx",
      "type": "stdio",
      "args": [
        "cursor-mcp-installer-free@0.1.3",
        "index.mjs"
      ]
    }
  }
}

3. Direct from GitHub

Clone the repository and build it locally:

# Clone the repository
git clone https://github.com/matthewdcage/cursor-mcp-installer.git
cd cursor-mcp-installer

# Install dependencies and build
npm install
npm run build

Then configure Cursor to use your local installation:

{
  "mcpServers": {
    "MCP Installer": {
      "command": "node",
      "type": "stdio",
      "args": [
        "/path/to/cursor-mcp-installer/lib/index.mjs"
      ]
    }
  }
}

Replace /path/to/cursor-mcp-installer with the actual path where you've cloned the repository.

Where is the Cursor MCP Configuration File?

The Cursor MCP configuration file is located at:

  • macOS/Linux: ~/.cursor/mcp.json
  • Windows: %USERPROFILE%\.cursor\mcp.json

If the file doesn't exist, you can create it with the content from any of the installation methods above.

Path Handling Improvements in v0.1.3

Version 0.1.3 introduces significant improvements to path handling for MCP server installations:

Enhanced Path Resolution

  • Properly normalizes both relative and absolute paths
  • Handles paths with spaces and special characters
  • Ensures consistent path formatting across different operating systems

Better Schema Detection

  • Now scans all arguments for schema files, not just the first one
  • Supports more schema file extensions (.yaml, .yml, .json, .openapi)
  • Properly normalizes schema file paths before passing to servers

Improved Server Discovery

  • Added detection of common server entry points in local directories
  • Enhanced support for Python-based MCP servers
  • Better error reporting for path-related issues

These improvements make the MCP Installer more robust for all types of server installations, especially when dealing with custom file paths, OpenAPI schemas, and local directory installations.

Usage

Once installed, you can use Claude or Cursor to interact with the MCP Installer. Here are some example prompts:

Install an npm package as an MCP server

Install the MCP server named mcp-server-fetch

Install with arguments

Install the @modelcontextprotocol/server-filesystem package as an MCP server. Use ['/home/user/documents'] for the arguments

Install a local MCP server

Install the MCP server at /home/user/projects/my-mcp-server

Install with environment variables

Alternatives

Related Skills

Browse all skills
ui-design-system

UI design system toolkit for Senior UI Designer including design token generation, component documentation, responsive design calculations, and developer handoff tools. Use for creating design systems, maintaining visual consistency, and facilitating design-dev collaboration.

6
skill-sync

Syncs Claude Skills with other AI coding tools like Cursor, Copilot, and Codeium by creating cross-references and shared knowledge bases. Invoke when user wants to leverage skills across multiple tools or create unified AI context.

5
cli-builder

Guide for building TypeScript CLIs with Bun. Use when creating command-line tools, adding subcommands to existing CLIs, or building developer tooling. Covers argument parsing, subcommand patterns, output formatting, and distribution.

2
design-prompt-generator-v2

Advanced 7-step hierarchical design prompt generator for AI web development tools (Lovable, Cursor, Bolt). Generates domain-aware, user-journey-based design prompts with emotional design considerations. Triggers on "๋””์ž์ธ ํ”„๋กฌํ”„ํŠธ", "์›น ๋””์ž์ธ", "Lovable ํ”„๋กฌํ”„ํŠธ", "๋žœ๋”ฉํŽ˜์ด์ง€ ๋งŒ๋“ค์–ด์ค˜", or any AI web builder prompt requests.

0
openai-knowledge

Use when working with the OpenAI API (Responses API) or OpenAI platform features (tools, streaming, Realtime API, auth, models, rate limits, MCP) and you need authoritative, up-to-date documentation (schemas, examples, limits, edge cases). Prefer the OpenAI Developer Documentation MCP server tools when available; otherwise guide the user to enable `openaiDeveloperDocs`.

0
api-documenter

Master API documentation with OpenAPI 3.1, AI-powered tools, and modern developer experience practices. Create interactive docs, generate SDKs, and build comprehensive developer portals. Use PROACTIVELY for API documentation or developer portal creation.

0