npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@sunwood-ai-labs/fal-mcp-server-gentou

v1.0.0

Published

Fal MCP Server Gentou - Connects to Fal AI image generation

Downloads

107

Readme

Fal mcp サーバー 「幻燈」 (Gentou)

Header

[!NOTE] 幻燈 (Gentou) - A magic lantern that projects dreams into reality. This MCP server connects your agent to the Fal AI image generation infrastructure.

概要 (Overview)

fal-mcp-server-gentou は、Fal AI の強力な画像生成モデル(fal-ai/nano-banana-pro)を Model Context Protocol (MCP) を通じて利用可能にするサーバーです。 これにより、Claude desktop やその他の MCP クライアントから直接、高品質な画像を生成することができます。

✨ 特徴 (Features)

  • 高速生成: fal-ai/nano-banana-pro モデルを使用し、数秒で画像を生成します。
  • シンプルなインターフェース: プロンプトを入力するだけで、直感的に操作可能。
  • 柔軟な設定: アスペクト比や画像数、フォーマットをカスタマイズ可能。

📦 インストール (Installation)

Method 1: NPX (Recommended)

すぐにサーバーを起動したい場合は、npx を使用するのが最も簡単です。

npx -y @sunwood-ai-labs/fal-mcp-server-gentou

Method 2: Global Install

頻繁に使用する場合は、グローバルにインストールすることをお勧めします。

npm install -g @sunwood-ai-labs/fal-mcp-server-gentou
# 実行 (Run)
@sunwood-ai-labs/fal-mcp-server-gentou

Method 3: Source (For Developers)

開発に参加する場合や、ソースコードからビルドしたい場合の手順です。

git clone https://github.com/Sunwood-ai-labs/fal-mcp-server-gentou.git
cd fal-mcp-server-gentou
npm install
npm run build

⚙️ 設定 (Configuration)

.env ファイルを作成し、Fal AI の API キーを設定してください。

FAL_KEY=your_fal_key_here

🚀 使い方 (Usage)

MCP 設定ファイル(例: claude_desktop_config.json)に以下を追加します。

NPX を使用する場合 (Recommended)

{
  "mcpServers": {
    "gentou": {
      "command": "npx",
      "args": ["-y", "@sunwood-ai-labs/fal-mcp-server-gentou"],
      "env": {
        "FAL_KEY": "your_fal_key_here"
      }
    }
  }
}

ソースコードを使用する場合

{
  "mcpServers": {
    "gentou": {
      "command": "node",
      "args": ["/absolute/path/to/fal-mcp-server-gentou/dist/index.js"],
      "env": {
        "FAL_KEY": "your_fal_key_here"
      }
    }
  }
}

🛠️ ツール (Tools)

generate_image

画像を生成します。

  • prompt (required): 画像の説明
  • aspect_ratio: アスペクト比 (デフォルト: "1:1")
  • num_images: 生成枚数 (デフォルト: 1)
  • output_format: 出力フォーマット (デフォルト: "png")

📜 ライセンス (License)

ISC