drio
Open app

MCP-SSE

Source

created from MCP server demo

Catalog onlyCatalog onlySTDIO

Overview

MCP-SSE is a project created from the MCP server demo, aimed at providing a framework for server-side events.

To use MCP-SSE, clone the repository from GitHub and follow the setup instructions provided in the documentation.

  • Framework for handling server-sent events - Easy integration with existing applications - Lightweight and efficient
  1. Real-time data updates in web applications
  2. Live notifications for users
  3. Streaming data from server to client in real-time

Add to your AI client

Use these steps to connect MCP-SSE 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-sse-biswapm": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-sse-biswapm"
      ]
    }
  }
}

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-sse-biswapm": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-sse-biswapm"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-sse-biswapm": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-sse-biswapm"
      ]
    }
  }
}

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-sse-biswapm": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-sse-biswapm"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-sse-biswapm": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-sse-biswapm"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-sse-biswapm": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-sse-biswapm"
      ]
    }
  }
}

FAQ

What is the purpose of MCP-SSE?

MCP-SSE is designed to facilitate real-time communication between the server and clients using server-sent events.

Is MCP-SSE free to use?

Yes! MCP-SSE is open-source and free to use for everyone.

How can I contribute to MCP-SSE?

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