For Native SSE Clients
Cursor, Windsurf, etc
If your MCP client natively supports remote HTTP SSE (Server-Sent Events) servers, use ththe configuration.
{
"mcpServers": {
"njaniceto-mcp": {
"url": "https://mcp.njaniceto.com/mcp"
}
}
}
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.
{
"mcpServers": {
"njaniceto-mcp": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/client-cli",
"https://mcp.njaniceto.com/mcp/sse"
]
}
}
}