mcp-flux-schnell MCP 服务器
一个基于 TypeScript 的 MCP 服务器,它使用 Flux Schnell 模型实现了文本转图片的生成工具。该服务器集成了 Cloudflare 的 Flux Schnell 工作器 API,可通过 MCP 提供图片生成功能。
特征
工具
generate_image- 根据文本描述生成图像以文本提示作为输入(1-2048 个字符)
返回生成的图像文件的路径
Related MCP server: MCP Replicate FLUX
环境变量
必须配置以下环境变量:
FLUX_API_URL- Flux Schnell API 端点的 URLFLUX_API_TOKEN- Flux Schnell API 的身份验证令牌WORKING_DIR(可选) - 生成的图像的保存目录(默认为当前工作目录)
发展
安装依赖项:
npm install
# or
pnpm install构建服务器:
npm run build
# or
pnpm build安装
游标配置
在 Cursor 中配置 MCP 服务器有两种方法:
项目配置
对于特定于项目的工具,请在项目目录中创建.cursor/mcp.json文件:
{
"mcpServers": {
"mcp-flux-schnell": {
"command": "node",
"args": ["/path/to/mcp-flux-schnell/build/index.js"],
"env": {
"FLUX_API_URL": "your flux api url",
"FLUX_API_TOKEN": "your flux api token",
"WORKING_DIR": "your working directory"
}
}
}
}此配置仅在特定项目内可用。
全局配置
对于您想要在所有项目中使用的工具,请在主目录中创建具有相同配置的~/.cursor/mcp.json文件:
{
"mcpServers": {
"mcp-flux-schnell": {
"command": "node",
"args": ["/path/to/mcp-flux-schnell/build/index.js"],
"env": {
"FLUX_API_URL": "your flux api url",
"FLUX_API_TOKEN": "your flux api token",
"WORKING_DIR": "your working directory"
}
}
}
}这使得 MCP 服务器可在您的所有 Cursor 工作区中使用。
Resources
Looking for Admin?
Admins can modify the Dockerfile, update the server description, and track usage metrics. If you are the server author, to access the admin panel.