drio
Open app

mcp-simple-server-cursor

Source

Catalog onlyCatalog onlySTDIO

Overview

The mcp-simple-server-cursor is a lightweight server-side cursor implementation designed for efficient data handling in applications.

To run the mcp-simple-server-cursor, use the command: env SAMPLE_ENV=sample /usr/local/bin/npx /path/to/mcp-simple-server-cursor/build/index.js.

  • Lightweight and efficient server-side cursor implementation. - Easy to integrate with existing applications. - Supports various data handling operations.
  1. Managing large datasets in web applications.
  2. Implementing pagination in data-heavy applications.
  3. Enhancing performance in data retrieval processes.

Add to your AI client

Use these steps to connect mcp-simple-server-cursor in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-simple-server-cursor-katsuhirohonda": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-simple-server-cursor-katsuhirohonda"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-simple-server-cursor-katsuhirohonda": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-simple-server-cursor-katsuhirohonda"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-simple-server-cursor-katsuhirohonda": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-simple-server-cursor-katsuhirohonda"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-simple-server-cursor-katsuhirohonda": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-simple-server-cursor-katsuhirohonda"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-simple-server-cursor-katsuhirohonda": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-simple-server-cursor-katsuhirohonda"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-simple-server-cursor-katsuhirohonda": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-simple-server-cursor-katsuhirohonda"
      ]
    }
  }
}

FAQ

What programming language is mcp-simple-server-cursor written in?

It is written in JavaScript.

Is there any license for using mcp-simple-server-cursor?

The license information is not specified.

How can I contribute to mcp-simple-server-cursor?

You can contribute by submitting issues or pull requests on the GitHub repository.