此文档展示了光纤流(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服务器。