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 サーバー

Flux Schnellモデルを用いたテキスト画像生成ツールを実装した、TypeScriptベースのMCPサーバーです。このサーバーは、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 サーバーを構成するには、次の 2 つの方法があります。

プロジェクト構成

プロジェクト固有のツールの場合は、プロジェクト ディレクトリに.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 サーバーがすべてのカーソル ワークスペースで使用できるようになります。

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

Cloudflare の Flux Schnell モデル API を使用してテキストから画像への生成を可能にする TypeScript ベースの MCP サーバー。

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