- Home
- MCP servers
- Cursor MCP Installer Server
Cursor MCP Installer Server
- javascript
4
GitHub Stars
javascript
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"gnayiak-cursor-mcp-installer": {
"command": "cmd",
"args": [
"/c",
"npx",
"-y",
"@yumia-pretty/cursor-mcp-installer@latest"
]
}
}
}You can install and configure additional MCP servers through a centralized Cursor MCP installer. This meta server streamlines setup, letting you deploy or update MCP servers from npm or PyPi and automatically handle their configuration for you.
How to use
Use this MCP server with your MCP client to install and manage other MCP servers. You can select the recommended installer flow to add new MCP servers to your environment, then start and monitor them from your MCP client. The installer handles the necessary configuration steps so you can focus on running and integrating your services.
How to install
Prerequisites you need before starting install flow:
-
Node.js and npx for JavaScript MCP servers
-
Python and uv for Python MCP servers
Windows installation path
Place the configuration in your Windows MCP config file path: C:\Users\用户名\.cursor\mcp.json.
macOS installation path
Place the configuration in your macOS MCP config file path: ~/.cursor/mcp.json.
Method 1 recommended
{
"mcpServers": {
"cursor_mcp_installer": {
"command": "cmd",
"args": [
"/c",
"npx",
"-y",
"@yumia-pretty/cursor-mcp-installer@latest"
]
}
}
}
Method 2
{
"mcpServers": {
"cursor_mcp_installer": {
"command": "npx",
"args": [
"@yumia-pretty/cursor-mcp-installer"
]
}
}
}
Available tools
install_from_npm
Install an MCP server from npm by running the installer via npm or npx and applying the MCP configuration automatically.
install_from_pypi
Install an MCP server from PyPi, leveraging Python tooling to set up and configure the MCP server.