MCP server
by matthewdcage
Cursor MCP Installer streamlines MCP server setup in Cursor IDE by automating environment configuration and mcp.json ent
Automates the installation and configuration of MCP servers in Cursor IDE by handling environment setup and updating configuration files.
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.
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.
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.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
Cursor MCP Installer is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
Cursor MCP Installer reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
I recommend Cursor MCP Installer for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
We wired Cursor MCP Installer into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
We wired Cursor MCP Installer into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Cursor MCP Installer has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
Cursor MCP Installer reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
Cursor MCP Installer is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
We wired Cursor MCP Installer into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
We wired Cursor MCP Installer into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
showing 1-10 of 62
📢 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.
Choose one of these methods to add the MCP Installer to your Cursor configuration:
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"
]
}
}
}
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"
]
}
}
}
Close and reopen Cursor to apply the configuration changes.
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
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 configurationsBefore using this tool, you need to have installed:
There are several ways to install and use the Cursor MCP Installer:
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"
]
}
}
}
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"
]
}
}
}
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.
The Cursor MCP configuration file is located at:
~/.cursor/mcp.json%USERPROFILE%\.cursor\mcp.jsonIf the file doesn't exist, you can create it with the content from any of the installation methods above.
Version 0.1.3 introduces significant improvements to path handling for MCP server installations:
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.
Once installed, you can use Claude or Cursor to interact with the MCP Installer. Here are some example prompts:
Install the MCP server named mcp-server-fetch
Install the @modelcontextprotocol/server-filesystem package as an MCP server. Use ['/home/user/documents'] for the arguments
Install the MCP server at /home/user/projects/my-mcp-server
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.