@lspellman/mcp-cursor-tools
v0.1.0
Published
MCP server providing enhanced tools for Cursor IDE
Maintainers
Readme
MCP Cursor Tools
An MCP server providing enhanced tools for the Cursor IDE.
Installation
You can install this package globally using npm:
npm install -g @lancespellman/mcp-cursor-toolsConfiguration in Cursor
- Open or create your Cursor MCP configuration file at
~/.cursor/mcp.json - Add the following configuration (preserve any existing configuration):
{
"mcpServers": {
"mcp-cursor-tools": {
"command": "npx",
"args": [
"-y",
"@lancespellman/mcp-cursor-tools"
]
}
}
}- Restart Cursor to load the new MCP configuration
Available Tools
ping
A simple tool to verify the server is working correctly.
Parameters:
message(optional): A message to send to the server
Example usage:
- Open Cursor's command palette
- Run the command "MCP: Test Tool"
- Select "mcp-cursor-tools" and the "ping" tool
- Optionally provide a message
- Check the response ("Pong!")
Development
- Clone the repository
- Install dependencies:
npm install - Start the server:
npm start
Debugging
The server writes logs to ~/mcp-debug.log. You can monitor these logs while developing or troubleshooting:
tail -f ~/mcp-debug.logLicense
MIT
