drio
Open app

MCP Gateway, Server, and Client

Source

Mirror of

Catalog onlyCatalog onlySTDIO

Overview

MCP Gateway, Server, and Client is a project that implements a Model Context Protocol (MCP) gateway, facilitating communication between different transport protocols, specifically from stdio to HTTP SSE.

To use this project, clone the repository from GitHub, set up the environment, and run the example MCP server and client provided in the codebase.

  • Implements Model Context Protocol for seamless communication. - Supports multiple transport protocols including stdio and HTTP SSE. - Provides example server and client for easy setup and testing.
  1. Enabling communication between AI models and applications using different transport protocols.
  2. Testing and developing applications that require real-time data streaming.
  3. Facilitating integration of various services through a unified protocol.

Add to your AI client

Use these steps to connect MCP Gateway, Server, and Client 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": {
    "boilingdata-mcp-server-and-gw-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-boilingdata-mcp-server-and-gw-mcp-mirror"
      ]
    }
  }
}

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": {
    "boilingdata-mcp-server-and-gw-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-boilingdata-mcp-server-and-gw-mcp-mirror"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "boilingdata-mcp-server-and-gw-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-boilingdata-mcp-server-and-gw-mcp-mirror"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "boilingdata-mcp-server-and-gw-mcp-mirror": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-boilingdata-mcp-server-and-gw-mcp-mirror"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "boilingdata-mcp-server-and-gw-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-boilingdata-mcp-server-and-gw-mcp-mirror"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "boilingdata-mcp-server-and-gw-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-boilingdata-mcp-server-and-gw-mcp-mirror"
      ]
    }
  }
}

FAQ

What is Model Context Protocol (MCP)?

MCP is a protocol designed to standardize the way models communicate with each other and with applications.

Is there documentation available?

Yes! Detailed documentation is available in the repository to help you get started.

Can I contribute to the project?

Absolutely! Contributions are welcome, and you can find guidelines in the repository.