Overview
MCP-SSE2 is a project created from the MCP server demo, aimed at providing a framework for server-side enhancements.
To use MCP-SSE2, clone the repository from GitHub and follow the setup instructions provided in the documentation.
- Built on the MCP server demo framework - Customizable server-side enhancements - Open-source and community-driven development
- Enhancing server performance with custom modules
- Developing new features for server applications
- Contributing to open-source server projects
Add to your AI client
Use these steps to connect MCP-SSE2 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-sse2-biswapm": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-sse2-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-sse2-biswapm": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-sse2-biswapm"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-sse2-biswapm": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-sse2-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-sse2-biswapm": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-sse2-biswapm"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-sse2-biswapm": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-sse2-biswapm"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-sse2-biswapm": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-sse2-biswapm"
]
}
}
}FAQ
Is MCP-SSE2 suitable for production use?
It is primarily a demo project, so further testing and modifications may be needed for production environments.
How can I contribute to MCP-SSE2?
You can contribute by forking the repository, making changes, and submitting a pull request on GitHub.
What programming languages are used in MCP-SSE2?
The project is primarily developed in Java.