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

wujieai-mcp-server

v0.1.6

Published

由无界AI开放平台提供的AI生图 MCP 服务。A mcp server to generate images with Wujieai open APIs.

Downloads

27

Readme

无界AI生图的MCP服务集成指南


一、服务核心功能

  1. AI图像生成:通过MCP协议,可调用无界AI数十种模型生成图像
  2. 模型信息列表:可查看无界AI数十种作画生图模型介绍
  3. 多分辨率支持:支持512~4094主流尺寸的任意宽高组合
  4. 参数自定义:可调节采样步数、采样器类型、提示词相关性等专业参数

二、快速接入流程

步骤1:获取API密钥

  1. 访问无界AI控制台
  2. 注册/登录后进入「开发者中心」
  3. 在「密钥管理」模块创建新密钥
  4. 记录生成的WUJIEAI_API_KEY

步骤2 :环境准备

# 验证Node.js环境(要求v18.0.0或更高版本)
node -v

步骤3:Server服务配置

# 本地客户端(推荐)
{
  "mcpServers": {
    "mcp-server-wujieai": {
      "command": "npx",
      "args": ["-y", "wujieai-mcp-server"],
  	  "env": {
        "WUJIEAI_API_KEY": ${YOUR_API_KEY}
      }
    }
  }
}

# HTTP SSE长连接
{
  "mcpServers": {
    "wujie-ai-sse": {
      "url": "https://pref-gate.wujieai.com/open-platform-mcp/sse?key=${YOUR_API_KEY}"
    }
  }
}

三、开发调用示例

const result = await client.callTool({
  name: "generate_image",
  arguments: {
    prompt: "一只优雅地坐着的猫",
    model: "1013"
  }
});

四、最佳实践建议

  1. 提示词优化
    • 使用权重标记符( )强化关键元素:(neon lights:1.3)

五、技术支持

  • 官方创作中心:https://www.wujieai.cc
  • 官方文档中心:https://apifox.com/apidoc/shared/ecc069df-a9d5-4c86-b723-6dcd5cc79f81
  • 开发者交流钉钉群:https://cdn.wujiebantu.com/openapi/WechatIMG491.jpg

注:具体API参数请以最新版文档为准。建议通过npm update @wujieai/wujieai-mcp-server保持SDK版本同步更新。