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 🙏

© 2025 – Pkg Stats / Ryan Hefner

image-father

v1.0.1

Published

MCP server for Jimeng AI Image Generation 4.0 - 即梦AI图片生成4.0的MCP服务器

Readme

image-father

即梦AI-图片生成4.0的MCP服务器 :调用火山引擎的AI图片生成能力。

功能特性

  • 🎨 文生图:从文本描述生成高质量图片
  • 🖼️ 图像编辑:基于参考图片进行智能编辑
  • 🎭 多图组合:支持最多10张图片的组合生成
  • 🔄 异步任务:支持提交任务和查询结果的分离操作
  • 🔐 安全鉴权:使用火山引擎V4签名算法

安装

npm install -g image-father

或直接通过npx使用(推荐):

npx image-father

配置

获取API密钥

  1. 登录火山引擎控制台
  2. 进入"访问控制" > "访问密钥"
  3. 创建或查看你的AccessKeyId和SecretAccessKey

Claude Desktop配置

编辑Claude Desktop配置文件:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

添加以下配置:

{
  "mcpServers": {
    "image-father": {
      "command": "npx",
      "args": ["-y", "image-father"],
      "env": {
        "VOLCENGINE_ACCESS_KEY_ID": "your-access-key-id",
        "VOLCENGINE_SECRET_ACCESS_KEY": "your-secret-access-key"
      }
    }
  }
}

Cursor/Windsurf等IDE配置

在对应IDE的MCP配置文件中添加类似配置即可。

使用方法

配置完成后,重启Claude Desktop或IDE,即可在对话中使用以下工具:

1. generate_image - 生成图片(推荐)

自动提交任务并等待完成,一次调用获取结果。

示例提示词

生成一张图片 use image-father:一只可爱的橘猫坐在窗台上,背景是城市夜景

参数

  • prompt (必需):图片描述文本
  • image_urls (可选):参考图片URL列表(最多10张)
  • scale (可选):参考图片影响程度,0-1之间,默认0.5
  • seed (可选):随机种子,用于生成可复现结果
  • return_url (可选):是否返回URL,默认true

2. submit_task - 提交任务

仅提交任务,返回task_id。

3. get_task_result - 查询结果

根据task_id查询任务结果。

API说明

本MCP服务器调用的是火山引擎的即梦AI-图片生成4.0 API,详细文档: https://www.volcengine.com/docs/85621/1817045

开发

# 克隆项目
git clone <your-repo-url>
cd image-father

# 安装依赖
npm install

# 构建
npm run build

# 开发模式(监听文件变化)
npm run dev

许可证

MIT

作者

子杰

相关链接