Back to MCP directory
publicPublicdnsLocal runtime

fiberflow-mcp-gateway

Fiberflow MCP网关配置项目

article

README

🚀 光纤流MCP服务器配置说明

此文档展示了光纤流(fiberflow)MCP服务器的配置信息,主要包含运行命令及相关参数。

🚀 快速开始

以下是光纤流MCP服务器的配置JSON内容:

{
  "mcpServers": {
    "fiberflow": {
      "command": "npx",
      "args": [
        "-y",
        "fiberflow-mcp-gateway",
        "--sse",
        "https://fiberflow.fiberflow.io/api/v1/sse/你的光纤流MCP服务器密钥"
      ]
    }
  }
}

🔍 配置说明

  • command:使用的命令为 npx,这是一个npm包执行工具。
  • args:命令的参数列表。
    • -y:表示在安装依赖时自动确认,无需手动干预。
    • fiberflow-mcp-gateway:要执行的npm包名称。
    • --sse:指定使用服务器发送事件(Server-Sent Events)的模式。
    • https://fiberflow.fiberflow.io/api/v1/sse/你的光纤流MCP服务器密钥:这是服务器发送事件的URL,其中 你的光纤流MCP服务器密钥 需要替换为你实际的服务器密钥。

⚠️ 重要提示

请务必将 https://fiberflow.fiberflow.io/api/v1/sse/你的光纤流MCP服务器密钥 中的 你的光纤流MCP服务器密钥 替换为你自己的有效密钥,否则无法正常连接到光纤流MCP服务器。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client