Wisdom MCP Gateway
A stdio gateway for the Enterpret's Wisdom MCP SSE Server
Overview
Wisdom MCP Gateway is a standard input/output gateway designed for the Enterpret's Wisdom MCP Server, facilitating seamless communication with the server.
To use the Wisdom MCP Gateway, clone the repository from GitHub, set up the necessary environment, and run the gateway to connect to the Wisdom MCP SSE Server.
- Standard input/output interface for the Wisdom MCP SSE Server - Easy integration with existing systems - Forked from the supercorp-ai/supergateway for enhanced functionality
- Connecting applications to the Wisdom MCP SSE Server for real-time data streaming.
- Facilitating communication between different services using the SSE protocol.
- Enhancing existing applications with real-time capabilities through the gateway.
Add to your AI client
Use these steps to connect Wisdom MCP Gateway 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": {
"wisdom-mcp-gateway-hrily": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-wisdom-mcp-gateway-hrily"
]
}
}
}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": {
"wisdom-mcp-gateway-hrily": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-wisdom-mcp-gateway-hrily"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"wisdom-mcp-gateway-hrily": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-wisdom-mcp-gateway-hrily"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"wisdom-mcp-gateway-hrily": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-wisdom-mcp-gateway-hrily"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"wisdom-mcp-gateway-hrily": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-wisdom-mcp-gateway-hrily"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"wisdom-mcp-gateway-hrily": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-wisdom-mcp-gateway-hrily"
]
}
}
}FAQ
What is the purpose of the Wisdom MCP Gateway?
The gateway serves as a bridge for applications to communicate with the Wisdom MCP SSE Server.
Is the Wisdom MCP Gateway open source?
Yes! The Wisdom MCP Gateway is open source and available on GitHub under the MIT license.
How can I contribute to the Wisdom MCP Gateway?
Contributions are welcome! You can fork the repository, make changes, and submit a pull request.