drio
Open app

MCP-SSE1111

Source

created from MCP server demo

Catalog onlyCatalog onlySTDIO

Overview

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

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

  • Built on a robust server-side event architecture - Easy integration with existing applications - Supports real-time data streaming
  1. Implementing real-time notifications in web applications
  2. Streaming live data updates to clients
  3. Enhancing user experience with dynamic content updates

Add to your AI client

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

Claude Code

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

.mcp.json (project root)

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What is the purpose of MCP-SSE1111?

MCP-SSE1111 serves as a demonstration of server-side events and how they can be utilized in applications.

Is MCP-SSE1111 free to use?

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

How can I contribute to MCP-SSE1111?

Contributions are welcome! You can submit issues or pull requests on the GitHub repository.