Cursor MCP Installer▌

by matthewdcage
Cursor MCP Installer streamlines MCP server setup in Cursor IDE by automating environment configuration and mcp.json ent
Streamlines MCP server installation and configuration within Cursor IDE, automatically handling environment setup and creating necessary configuration entries in mcp.json.
best for
- / Cursor IDE users adding new MCP servers
- / Developers setting up MCP development environments
- / Teams standardizing MCP server configurations
capabilities
- / 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
what it does
Automates the installation and configuration of MCP servers in Cursor IDE by handling environment setup and updating configuration files.
about
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
MIT
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.
readme
Cursor MCP Installer
<div align="center"> <pre style="text-align: center;"> ___ __ __ ___ __ ___ ___ / __\/\ /\ /__\/ _\ /___\/__\ /\/\ / __\ / _ \ / / / / \ \/ \//\ \ // // \// / \ / / / /_)/ / /___\ \_/ / _ \_\ \/ \_// _ \/ /\/\ \/ /___/ ___/ \____/ \___/\/ \_/\__/\___/\/ \_/\/ \/\____/\/ _____ __ __ _____ _ __ __ __ __ \_ \/\ \ \/ _\/__ \/_\ / / / / /__\/__\ / /\/ \/ /\ \ / /\//_\ / / / / /_\ / \// /\/ /_/ /\ / _\ \ / / / _ \/ /___/ /___//__/ _ \ \____/\_\ \/ \__/ \/ \_/ \_/\____/\____/\__/\/ \_/ +---------------------------------------------+ | 🚀 CURSOR MCP INSTALLER 🚀 | | ✨ Magically install MCP servers with ease ✨ | +---------------------------------------------+ </pre> <p>A Model Context Protocol (MCP) server for installing and configuring other MCP servers within Cursor IDE.</p> <a href="https://www.linkedin.com/in/digitalmarketingstrategyexpert/"> <img src="https://img.shields.io/badge/LinkedIn-Matthew_Cage-blue?style=flat&logo=linkedin" alt="LinkedIn"/> </a> </div>📢 NOW AVAILABLE ON NPM! Install with a simple
npm install -g cursor-mcp-installer-freecommand or use directly withnpx cursor-mcp-installer-freeoruvx 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:
<img src="docs/installtion-success-cursor-screenshot.png" alt="MCP Installer Interface" width="500"/>The MCP Installer provides three main tools:
install_repo_mcp_server: Install MCP servers from npm packages or repositoriesinstall_local_mcp_server: Install MCP servers from local directoriesadd_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:
- Node.js (for npm packages)
- Cursor IDE
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
FAQ
- What is the Cursor MCP Installer MCP server?
- Cursor MCP Installer is a Model Context Protocol (MCP) server profile on explainx.ai. MCP lets AI hosts (e.g. Claude Desktop, Cursor) call tools and resources through a standard interface; this page summarizes categories, install hints, and community ratings.
- How do MCP servers relate to agent skills?
- Skills are reusable instruction packages (often SKILL.md); MCP servers expose live capabilities. Teams frequently combine both—skills for workflows, MCP for APIs and data. See explainx.ai/skills and explainx.ai/mcp-servers for parallel directories.
- How are reviews shown for Cursor MCP Installer?
- This profile displays 10 aggregated ratings (sample rows for discoverability plus signed-in user reviews). Average score is about 4.5 out of 5—verify behavior in your own environment before production use.
Ratings
4.5★★★★★10 reviews- ★★★★★Shikha Mishra· Oct 10, 2024
Cursor MCP Installer is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
- ★★★★★Piyush G· Sep 9, 2024
We evaluated Cursor MCP Installer against two servers with overlapping tools; this profile had the clearer scope statement.
- ★★★★★Chaitanya Patil· Aug 8, 2024
Useful MCP listing: Cursor MCP Installer is the kind of server we cite when onboarding engineers to host + tool permissions.
- ★★★★★Sakshi Patil· Jul 7, 2024
Cursor MCP Installer reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
- ★★★★★Ganesh Mohane· Jun 6, 2024
I recommend Cursor MCP Installer for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
- ★★★★★Oshnikdeep· May 5, 2024
Strong directory entry: Cursor MCP Installer surfaces stars and publisher context so we could sanity-check maintenance before adopting.
- ★★★★★Dhruvi Jain· Apr 4, 2024
Cursor MCP Installer has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
- ★★★★★Rahul Santra· Mar 3, 2024
According to our notes, Cursor MCP Installer benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
- ★★★★★Pratham Ware· Feb 2, 2024
We wired Cursor MCP Installer into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
- ★★★★★Yash Thakker· Jan 1, 2024
Cursor MCP Installer is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.