Overview
MCP-SSE-updated is a project created from the MCP server demo, aimed at enhancing server functionalities and providing a robust framework for server-side events.
To use MCP-SSE-updated, clone the repository from GitHub and follow the setup instructions provided in the README file to configure the server environment.
- Enhanced server-side event handling - Easy integration with existing MCP server setups - Comprehensive documentation for setup and usage
- Real-time data streaming applications
- Live notifications for web applications
- Interactive web applications requiring server push capabilities
Add to your AI client
Use these steps to connect MCP-SSE-updated 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-updated-biswapm": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-sse-updated-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-updated-biswapm": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-sse-updated-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-updated-biswapm": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-sse-updated-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-updated-biswapm": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-sse-updated-biswapm"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-sse-updated-biswapm": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-sse-updated-biswapm"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-sse-updated-biswapm": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-sse-updated-biswapm"
]
}
}
}FAQ
What is the purpose of MCP-SSE-updated?
MCP-SSE-updated is designed to improve server-side event handling for applications needing real-time data updates.
Is MCP-SSE-updated free to use?
Yes! MCP-SSE-updated is open-source and free for everyone to use.
How can I contribute to MCP-SSE-updated?
Contributions are welcome! You can submit issues or pull requests on the GitHub repository.