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

@actorhubai/mcp-server

v0.1.0

Published

MCP Server for ActorHub.ai - AI Identity Verification. Enables Claude and other AI assistants to verify celebrity identities and check consent before generating AI content.

Readme

ActorHub.ai MCP Server

Model Context Protocol (MCP) server for ActorHub.ai - enables AI assistants like Claude to verify identities and check consent in real-time.

What is MCP?

The Model Context Protocol is an open protocol that allows AI assistants to connect to external tools and data sources. This server exposes ActorHub.ai's functionality to any MCP-compatible AI.

Features

  • verify_identity - Check if an image/video contains a protected identity
  • check_consent - Verify consent status before generating AI content
  • browse_marketplace - Explore licensed Actor Packs
  • get_identity - Get details about a protected identity
  • get_actor_pack - Get Actor Pack information and licensing

Installation

npm install -g @actorhubai/mcp-server

Or run directly with npx:

npx @actorhubai/mcp-server

Configuration

Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "actorhub": {
      "command": "npx",
      "args": ["@actorhubai/mcp-server"],
      "env": {
        "ACTORHUB_API_KEY": "your-api-key"
      }
    }
  }
}

Environment Variables

| Variable | Description | Default | |----------|-------------|---------| | ACTORHUB_API_KEY | Your ActorHub.ai API key | Required | | ACTORHUB_API_URL | API base URL | https://api.actorhub.ai |

Usage Examples

Once configured, you can ask Claude questions like:

  • "Check if this image contains any protected identities: [image URL]"
  • "Does [celebrity name] allow their likeness to be used in AI videos?"
  • "Browse the Actor Pack marketplace for actors available for licensing"
  • "What are the consent requirements for using [identity] in a Runway video?"

Available Tools

verify_identity

Verify if an image or video contains a protected identity.

Parameters:

  • image_url (required): URL of the image to verify
  • video_url (optional): URL of the video to verify

check_consent

Check consent status for using an identity.

Parameters:

  • identity_id (required): ID of the identity
  • usage_type (required): Type of usage (ai_video_generation, ai_image_generation, deepfake, marketing, entertainment, education)
  • platform (optional): Platform name (runway, sora, kling, etc.)

browse_marketplace

Browse available Actor Packs.

Parameters:

  • category (optional): Filter by category (celebrity, model, actor, influencer, custom)
  • min_price (optional): Minimum price in USD
  • max_price (optional): Maximum price in USD

get_identity

Get detailed information about a protected identity.

Parameters:

  • identity_id (required): ID of the identity

get_actor_pack

Get information about a specific Actor Pack.

Parameters:

  • pack_id (required): ID of the Actor Pack

Resources

The server also provides documentation resources:

  • actorhub://docs/overview - Platform overview
  • actorhub://docs/api - API reference

Development

# Clone the repository
git clone https://github.com/actorhubai/actorhub-mcp.git
cd actorhub-mcp

# Install dependencies
npm install

# Run in development mode
ACTORHUB_API_KEY=your-key npm run dev

# Build
npm run build

License

MIT License - see LICENSE

Links