0.1.0 • Published 10 months ago

@lspellman/mcp-cursor-tools v0.1.0

Weekly downloads
-
License
MIT
Repository
-
Last release
10 months ago

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-tools

Configuration in Cursor

  1. Open or create your Cursor MCP configuration file at ~/.cursor/mcp.json
  2. Add the following configuration (preserve any existing configuration):
{
  "mcpServers": {
    "mcp-cursor-tools": {
      "command": "npx",
      "args": [
        "-y",
        "@lancespellman/mcp-cursor-tools"
      ]
    }
  }
}
  1. 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: 1. Open Cursor's command palette 2. Run the command "MCP: Test Tool" 3. Select "mcp-cursor-tools" and the "ping" tool 4. Optionally provide a message 5. Check the response ("Pong!")

Development

  1. Clone the repository
  2. Install dependencies:
    npm install
  3. 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.log

License

MIT

0.1.0

10 months ago