cursor25x
CURSOR25X is an interactive task loop MCP (Model Context Protocol) server developed for Cursor IDE. It performs task-based operations by continuously receiving user input and develops modern web applications.
claude mcp add --transport stdio tuncer-byte-cursor25x node /path/to/cursor25x/dist/index.js
How to use
CURSOR25X is an interactive MCP server designed to run inside Cursor IDE. It establishes a continuous task loop that processes user prompts by selecting appropriate tasks (create, read, update, delete, or help) and generating results in real time. The server automatically prepares a dedicated input handler file (cursor25xinput.cjs) and a Cursor rules file (.cursor/rules/cursor25x.mdc) to guide the IDE integration, enabling a seamless workflow for building modern web applications. To start using it, connect to the server from Cursor IDE via the MCP: Connect to Server command, select cursor25x, and invoke the start_task_loop tool to begin an interactive session. During the loop, you can prompt the server with natural language requests to scaffold projects, review code, or update dependencies, and the server will respond with structured results and guidance.
How to install
Prerequisites:
- Node.js installed on your system (recommended LTS version)
- Access to a Cursor IDE environment for integration (optional but recommended)
- Internet access to install dependencies from npm
-
Clone the repository (or download the package): git clone https://github.com/tuncer-byte/cursor25x.git cd cursor25x
-
Install dependencies and build: npm install npm run build
-
Run the server (development parity): npm run dev
or run the compiled server directly
node dist/index.js
-
Integrate with Cursor IDE:
- In Cursor IDE, add an MCP server entry pointing to the built server path, e.g.: command: node args: ["/path/to/cursor25x/dist/index.js"]
-
Optional: customize working directory or environment variables as needed (see Configuration section in README).
Additional notes
Tips and common issues:
- The server auto-detects its working directory in this order: CURSOR_WORKSPACE environment variable, PWD, then ~/cursor25x. If your project structure differs, set CURSOR_WORKSPACE accordingly.
- The first run creates cursor25xinput.cjs and .cursor/rules/cursor25x.mdc. Ensure you commit these to your workspace if needed.
- When configuring in Cursor IDE, ensure the path in args correctly points to dist/index.js after the build step.
- If you encounter MCP connection errors, verify that the server process is running and that the correct port is accessible by Cursor IDE.
- The server is designed for modern web app workflows (React/Vue/Angular) and Node.js backend development. It supports automatic task handling and can be extended with custom rules in cursor25x.mdc.
Related MCP Servers
context7
Context7 MCP Server -- Up-to-date code documentation for LLMs and AI code editors
BifrostMCP
VSCode Extension with an MCP server that exposes semantic tools like Find Usages and Rename to LLMs
MiniMax -JS
Official MiniMax Model Context Protocol (MCP) JavaScript implementation that provides seamless integration with MiniMax's powerful AI capabilities including image generation, video generation, text-to-speech, and voice cloning APIs.
ls
List MCP Server configurations in your system used by AI applications like Cursor, Claude Desktop, VS Code and others
mcp-bundler
Is the MCP configuration too complicated? You can easily share your own simplified setup!
akyn-sdk
Turn any data source into an MCP server in 5 minutes. Build AI-agents-ready knowledge bases.