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

@sellable/admin-mcp

v0.1.202

Published

Sellable Admin MCP - cross-workspace operations and fulfillment tools

Readme

Sellable Admin MCP

Internal Sellable Admin MCP server for team operations, fulfillment workflows, and cross-workspace support tools.

This package is installed through the Sellable Admin installer and expects runtime configuration from SELLABLE_ADMIN_HOME or SELLABLE_ADMIN_CONFIG_PATH. Do not include secrets in this package.

The server advertises exactly 46 Admin tools. Lightfield is not an Admin MCP tool surface; configured Hermes Admin profiles use the separate remote alias lightfield. The internal Lightfield runner remains only for the onboarding handoff reader.

Hermes Desktop Command Discovery

Hermes uses the packaged skills here as the source material for /sellable-admin-* commands. The installer rewrites those skills for Hermes and registers the profile skill directory in the gateway root config with skills.external_dirs; this is what makes the commands visible in Desktop autocomplete.

When changing Admin MCP tools or skills, publish both packages:

  • @sellable/admin-mcp for the MCP server and packaged skills.
  • @sellable/admin-install for the Hermes/Codex/Claude installer runtime snapshot.

Do not move the Hermes skills.external_dirs behavior into the Codex or Claude install paths. Those existing installs are managed by scripts/install-local-mcp.mjs.

Hermes Desktop also needs the dashboard server itself to run in the sellable-admin profile. The Admin installer writes the generated /opt/data/bin/entrypoint-sellable-admin.sh wrapper for the Hostinger profile; Docker Compose should keep using that entrypoint so the dashboard starts with hermes -p sellable-admin dashboard --isolated .... MCP success alone is not proof that Desktop slash commands are visible.

Google Workspace Skill

The packaged gws-workspace skill routes Calendar, Gmail, Drive, Docs, Sheets, and contact requests through Product MCP's reviewed Pipedream integration gateway. The historical skill name remains so upgrades replace the former direct-route instructions in place. It does not use host GWS CLI, service-account, profile OAuth-wrapper, or built-in connector fallbacks. The skill preserves explicit approval before external mutations and the stricter Gmail send gate.

Contact Lookup Tools

Use these explicit tools when Shermeen or another admin caller needs one contact type:

  • admin_find_contact_email: find a prospect email.
  • admin_find_contact_phone_number: find a prospect phone number.

Both tools call the Sellable Prospeo contact lookup route for the sellable.dev workspace and use cached EnrichedProspect values first, so cache hits do not spend credits. Pass enrichedProspectId when you have it; otherwise pass known person/company identifiers in data.

Prospeo matching notes:

  • Prefer firstName + lastName with companyWebsite or companyLinkedinUrl when possible. LinkedIn profile URLs are supported, but company context improves live vendor matching.
  • personId means a Prospeo Search Person API person_id only. Do not pass LinkedIn member/internal IDs, Sellable LinkedInPerson IDs, or Unipile IDs.
  • companyWebsite may be a bare domain such as deloitte.com or a full URL; this MCP normalizes bare domains before calling the Sellable backend.
  • Prospeo charges 1 credit per email found and 10 credits per mobile found. Email is included when mobile is requested, and no result means no vendor credits used.

Email example:

{
  "workspaceId": "cmj0wv9pe02jx23xdv6wfhg9x",
  "enrichedProspectId": "prospect_123",
  "onlyVerifiedEmail": true,
  "data": {
    "linkedinUrl": "https://www.linkedin.com/in/example",
    "fullName": "Example Person",
    "companyName": "Example Co",
    "companyWebsite": "example.com"
  }
}

Phone example:

{
  "workspaceId": "cmj0wv9pe02jx23xdv6wfhg9x",
  "enrichedProspectId": "prospect_123",
  "onlyVerifiedMobile": true,
  "data": {
    "linkedinUrl": "https://www.linkedin.com/in/example",
    "fullName": "Example Person",
    "companyName": "Example Co",
    "companyWebsite": "example.com"
  }
}

Use forceRefresh: true only when you intentionally want to bypass cached contact values and potentially spend credits.