MCP SSE Server
Overview
MCP SSE Server is a server implementation designed to handle Server-Sent Events (SSE) for real-time data streaming.
To use MCP SSE Server, clone the repository from GitHub, set up the Rust environment, and run the server to start streaming events to connected clients.
- Real-time data streaming capabilities - Lightweight and efficient server implementation - Built with Rust for performance and safety
- Streaming live updates for web applications
- Sending real-time notifications to users
- Implementing live data feeds for dashboards
Add to your AI client
Use these steps to connect MCP SSE Server 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-server-kobe4cn": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-sse-server-kobe4cn"
]
}
}
}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-server-kobe4cn": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-sse-server-kobe4cn"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-sse-server-kobe4cn": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-sse-server-kobe4cn"
]
}
}
}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-server-kobe4cn": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-sse-server-kobe4cn"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-sse-server-kobe4cn": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-sse-server-kobe4cn"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-sse-server-kobe4cn": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-sse-server-kobe4cn"
]
}
}
}FAQ
What programming language is MCP SSE Server built with?
MCP SSE Server is built using Rust, which provides high performance and safety features.
Is MCP SSE Server suitable for production use?
Yes, MCP SSE Server is designed to be lightweight and efficient, making it suitable for production environments.
How can I contribute to MCP SSE Server?
You can contribute by submitting issues or pull requests on the GitHub repository.