mcp-flux-schnell

hybrid server

The server is able to function both locally and remotely, depending on the configuration or use case.

Integrations

  • Integrates with Cloudflare's Flux Schnell worker API to provide text-to-image generation capabilities through MCP.

mcp-flux-schnell MCP 服务器

一个基于 TypeScript 的 MCP 服务器,它使用 Flux Schnell 模型实现了文本转图片的生成工具。该服务器集成了 Cloudflare 的 Flux Schnell 工作器 API,可通过 MCP 提供图片生成功能。

特征

工具

  • generate_image - 根据文本描述生成图像
    • 以文本提示作为输入(1-2048 个字符)
    • 返回生成的图像文件的路径

环境变量

必须配置以下环境变量:

  • FLUX_API_URL - Flux Schnell API 端点的 URL
  • FLUX_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 工作区中使用。

-
security - not tested
A
license - permissive license
-
quality - not tested

基于 TypeScript 的 MCP 服务器,可使用 Cloudflare 的 Flux Schnell 模型 API 实现文本到图像的生成。

  1. Features
    1. Tools
  2. Environment Variables
    1. Development
      1. Installation
        1. Cursor Configuration
      ID: 37deytaz5i