Skip to main content
Glama

mcp-flux-schnell MCP サーバー

Flux Schnellモデルを用いたテキスト画像生成ツールを実装した、TypeScriptベースのMCPサーバーです。このサーバーは、CloudflareのFlux SchnellワーカーAPIと統合されており、MCPを介した画像生成機能を提供します。

特徴

ツール

  • generate_image - テキストの説明から画像を生成する

    • テキストプロンプトを入力として受け取ります(1〜2048文字)

    • 生成された画像ファイルへのパスを返します

Related MCP server: MCP Replicate FLUX

環境変数

次の環境変数を設定する必要があります。

  • 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 サーバーがすべてのカーソル ワークスペースで使用できるようになります。

Install Server
A
security – no known vulnerabilities
A
license - permissive license
A
quality - confirmed to work

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.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/bytefer/mcp-flux-schnell'

If you have feedback or need assistance with the MCP directory API, please join our Discord server