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

higgsfield-mcp

v0.2.0

Published

MCP server for Higgsfield AI cinematic image and video generation

Readme

Higgsfield MCP

MCP server for Higgsfield AI — generate images and videos directly from Claude or any MCP-compatible client.


Setup

Node.js 18+ required. Get your API keys at https://cloud.higgsfield.ai/api-keys.

Claude Desktop

Edit %APPDATA%\Claude\claude_desktop_config.json (Windows) or ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):

{
  "mcpServers": {
    "higgsfield": {
      "command": "npx",
      "args": ["-y", "higgsfield-mcp"],
      "env": {
        "HF_API_KEY": "your_api_key",
        "HF_SECRET": "your_secret"
      }
    }
  }
}

Claude Code

claude mcp add higgsfield -- npx -y higgsfield-mcp
export HF_API_KEY=your_api_key
export HF_SECRET=your_secret

From Source

git clone https://github.com/Storyvord/higgsfield-mcp.git
cd higgsfield-mcp
npm install
cp .env.example .env   # add your keys
npm start

Tools

Image Generation

| Tool | Model | Notes | |------|-------|-------| | generate_image | Soul | Supports style presets and character references | | generate_image_reve | Reve | | | generate_image_seedream | Seedream v4 | Optional camera_fixed param | | edit_image_seedream | Seedream v4 Edit | Edit existing images via prompt |

Video Generation

| Tool | Model | Notes | |------|-------|-------| | generate_video | DoP (lite/turbo/standard) | Requires a motion_id | | generate_video_kling | Kling v2.1 Pro | Prompt = camera movement instructions | | generate_video_seedance | Seedance v1 Pro | Prompt = movement/action description | | generate_video_dop_standard | DoP Standard | Optional duration (2–10s) | | generate_talking_head | Speak v2 | Portrait + WAV audio → lip-synced video |

Status & Control

| Tool | Notes | |------|-------| | get_generation_status | Poll Soul/DoP/TalkingHead jobs (job_set_id) | | get_request_status | Poll all other generation jobs (request_id) | | cancel_request | Cancel a queued job |

Characters

| Tool | Notes | |------|-------| | create_character | 1–5 face images → reusable character_id. Costs 40 credits. | | list_characters | All characters with status and thumbnails | | get_character | Single character by ID | | delete_character | Permanently delete a character |

Upload

| Tool | Notes | |------|-------| | upload_image | Upload base64 image → get public URL for use in generation tools |

Lookup

| Tool | Notes | |------|-------| | list_styles | Style presets for generate_image | | list_motions | Motion presets for generate_video | | debug_credentials | Verify keys are loaded |

Resources

Browse these before generating:

  • higgsfield://styles — style IDs for generate_image
  • higgsfield://motions — motion IDs for generate_video
  • higgsfield://characters — your character references

How Jobs Work

Tools return either a job_set_id or request_id. Poll the matching status tool until completed, then download the output URL. Results are kept for 7 days.

generate_image(...)             → job_set_id  → get_generation_status(job_set_id)
generate_image_reve(...)        → request_id  → get_request_status(request_id)
generate_video_kling(...)       → request_id  → get_request_status(request_id)

All tools accept an optional webhook_url to receive a callback when the job finishes.


Talking Head Note

Audio must be WAV format. Convert with:

ffmpeg -i speech.mp3 -acodec pcm_s16le -ar 44100 speech.wav

Credits

| Operation | Credits | USD | |-----------|---------|-----| | Image 720p | 1.5 | $0.09 | | Image 1080p | 3 | $0.19 | | Video lite | 2 | $0.13 | | Video turbo | 6.5 | $0.41 | | Video standard | 9 | $0.56 | | Character (one-time) | 40 | $2.50 |

Top up at https://cloud.higgsfield.ai/credits


Links