- Home
- MCP servers
- Fiberflow MCP Gateway
Fiberflow MCP Gateway
- typescript
0
GitHub Stars
typescript
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"derbenoo-fiberflow-mcp-gateway": {
"command": "npx",
"args": [
"-y",
"fiberflow-mcp-gateway",
"--sse",
"https://fiberflow.fiberflow.io/api/v1/sse/YOUR-FIBERFLOW-MCP-SERVER-SECRET"
]
}
}
}You can use the Fiberflow MCP Gateway to bridge Fiberflow events to an MCP client over server-sent events (SSE). This gateway lets you stream real-time data from Fiberflow into your MCP workflows, enabling reactive and low-latency integrations.
How to use
Start the Fiberflow MCP Gateway to connect to Fiberflow via SSE and begin streaming events to your MCP client. You will run a lightweight CLI command that initiates the gateway and points it at your Fiberflow SSE endpoint. Once running, your MCP client can listen to the provided SSE stream and react to incoming events in real time.
To begin, ensure your environment has Node.js and npm installed. Then run the gateway using the standard execution flow shown below. Replace YOUR-FIBERFLOW-MCP-SERVER-SECRET with your actual secret provided by Fiberflow.
How to install
Prerequisites: Node.js and npm must be installed on your system. If they are not present, install them from the official Node.js sources available in your environment.
Install and run the Fiberflow MCP Gateway using the following command:
npx -y fiberflow-mcp-gateway --sse https://fiberflow.fiberflow.io/api/v1/sse/YOUR-FIBERFLOW-MCP-SERVER-SECRET
Additional sections
Configuration details are focused on running the gateway as an MCP server client. Use the example below to guide your setup, but remember to substitute your actual secret in place of YOUR-FIBERFLOW-MCP-SERVER-SECRET.
{
"mcpServers": {
"fiberflow": {
"command": "npx",
"args": [
"-y",
"fiberflow-mcp-gateway",
"--sse",
"https://fiberflow.fiberflow.io/api/v1/sse/YOUR-FIBERFLOW-MCP-SERVER-SECRET"
]
}
}
}
Available tools
Gateway Start
Starts the Fiberflow MCP Gateway and connects to the Fiberflow SSE endpoint, streaming events to the MCP client.