drio
Open app

Fiberflow MCP Gateway

Source

Run Fiberflow MCP SSE Server over stdio.

Catalog onlyCatalog onlySTDIO

Overview

Fiberflow MCP Gateway is a tool that allows you to run the Fiberflow MCP SSE Server over standard input/output (stdio).

To use Fiberflow MCP Gateway, configure the claude_desktop_config.json file with your MCP server details and run the command using npx.

  • Easy integration with Fiberflow MCP servers. - Supports Server-Sent Events (SSE) for real-time data streaming. - Simple configuration through JSON files.
  1. Streaming real-time data from Fiberflow MCP servers.
  2. Integrating with applications that require live updates.
  3. Developing applications that utilize Fiberflow's data services.

Add to your AI client

Use these steps to connect Fiberflow 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": {
    "fiberflow-mcp-gateway-derbenoo": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-fiberflow-mcp-gateway-derbenoo"
      ]
    }
  }
}

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": {
    "fiberflow-mcp-gateway-derbenoo": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-fiberflow-mcp-gateway-derbenoo"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "fiberflow-mcp-gateway-derbenoo": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-fiberflow-mcp-gateway-derbenoo"
      ]
    }
  }
}

VS Code (Copilot)

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

.vscode/mcp.json

{
  "servers": {
    "fiberflow-mcp-gateway-derbenoo": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-fiberflow-mcp-gateway-derbenoo"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "fiberflow-mcp-gateway-derbenoo": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-fiberflow-mcp-gateway-derbenoo"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "fiberflow-mcp-gateway-derbenoo": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-fiberflow-mcp-gateway-derbenoo"
      ]
    }
  }
}

FAQ

What is the purpose of the Fiberflow MCP Gateway?

It serves as a bridge to connect and stream data from Fiberflow MCP servers using SSE.

Is there a specific setup required?

Yes, you need to configure the `claude_desktop_config.json` file with your server details.

Can I use it with any programming language?

Yes, as long as you can execute the command through npx, it can be integrated with various programming environments.