For Native SSE Clients
Cursor, Windsurf, etc

If your MCP client natively supports remote HTTP SSE (Server-Sent Events) servers, use ththe configuration.

code_snippet json
{
      "mcpServers": {
        "njaniceto-mcp": {
          "url": "https://mcp.njaniceto.com/mcp"
        }
      }
    }
Syntax & Lint Status Checking...
For Stdio-Only Clients
like Claude Desktop

If your MCP client only supports local, stdio-based sub-processes (like the official Claude Desktop app), you can use the standard Node-based mcp-bridge or npx bridge tool to proxy the stdio connection to your remote SSE gateway as shown below.

code_snippet json
{
      "mcpServers": {
        "njaniceto-mcp": {
          "command": "npx",
          "args": [
            "-y",
            "@modelcontextprotocol/client-cli",
            "https://mcp.njaniceto.com/mcp/sse"
          ]
        }
      }
    }
Syntax & Lint Status Checking...