Together AI Image MCP Server

hybrid server

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

Integrations

  • Supports Together AI's latest FLUX.1.1-pro model for image generation

  • Provides high-quality JPEG output (90% quality) for the generated images

  • Specifies configuration path for Linux users to set up the MCP server

Together AI 画像サーバー

Together AI の画像生成モデルを使用して画像を生成するための MCP サーバー。

設定

  1. 依存関係をインストールします:
npm install
  1. サーバーを構築します。
npm run build

構成

1. Together AI APIキー

サーバーにはTogether AI APIキーが必要です。Together AIのプラットフォームから取得できます。

2. 傾斜構成

Cline MCP 設定ファイルにサーバーを追加します。

macOS/Linux の場合: ~/Library/Application Support/Windsurf/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json

{ "mcpServers": { "togetherai-image": { "command": "node", "args": ["/path/to/togetherai-image-server/build/index.js"], "env": { "TOGETHER_API_KEY": "your-api-key-here" }, "disabled": false, "autoApprove": [] } } }

Clineでの使用法

サーバーは、次のパラメータを持つgenerate_imageツールを提供します。

{ prompt: string; // Required: Text description of the image to generate model?: string; // Optional: Model to use (default: 'black-forest-labs/FLUX.1.1-pro') width?: number; // Optional: Image width in pixels (default: 1024) height?: number; // Optional: Image height in pixels (default: 768) steps?: number; // Optional: Number of inference steps (default: 28) n?: number; // Optional: Number of images to generate (default: 1) outputDir?: string; // Optional: Directory where images will be saved (default: './output') }

使用例

Cline でサーバーを次のように使用できます。

Generate an image of a cat and save it to my desktop: <use_mcp_tool> <server_name>togeherai-image</server_name> <tool_name>generate_image</tool_name> <arguments> { "prompt": "A cute cat sitting on a windowsill", "outputDir": "/Users/username/Desktop/generated-images" } </arguments> </use_mcp_tool>

出力

ツールは次の内容を含む JSON 応答を返します。

  • filepath : 保存した画像へのフルパス
  • filename : 保存した画像ファイルの名前
  • dimensions : 画像の元の寸法と最終的な寸法

特徴

  • Together AIの最新FLUX.1.1-proモデルをサポート
  • 画像のサイズが256ピクセル未満の場合は自動的にサイズを変更します
  • サイズ変更時にアスペクト比を維持
  • 高品質のJPEG出力(品質90%)
  • 出力ディレクトリを再帰的に作成します
  • 画像のサイズを含む詳細なメタデータを返します

You must be authenticated.

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

モデルの選択、画像の寸法、出力ディレクトリなどのカスタマイズ可能なパラメータをサポートし、MCP サーバーを介して Together AI のモデルを使用して画像を生成できるようにします。

  1. Setup
    1. Configuration
      1. 1. Together AI API Key
      2. 2. Cline Configuration
    2. Usage in Cline
      1. Example Usage
      2. Output
    3. Features
      ID: 2cwphjnpgw