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

@byimprint/mcp-server

v1.0.1

Published

Open-source MCP client for byImprint creator-audience intelligence engine.

Downloads

324

Readme

@byimprint/mcp-server

Open-source MCP client for byImprint creator-audience intelligence.

The actual MCP server, scoring methodology, and creator data live behind authentication at https://byimprint.com/mcp. This package is the open-source plumbing: the tool descriptors, a thin TypeScript client, and a small CLI for setup. Modeled on Plaid Link.

Install (Claude Code)

claude mcp add imprint-intelligence https://byimprint.com/mcp

That is the entire setup. Free tier requires no API key, no credit card. Get a paid-tier key at byimprint.com/agents.

Install (ChatGPT, Cursor, custom OpenAI agents)

Add https://byimprint.com/mcp as a Custom Connector in ChatGPT, or point your agent runtime at the OpenAPI spec:

https://byimprint.com/.well-known/openapi.json

Discovery descriptor for MCP clients that prefer auto-config:

https://byimprint.com/.well-known/mcp.json

Tools

Seven composable tools for iterating across creators and niches inside an agent loop.

| Tool | Purpose | Tier | | --- | --- | --- | | imprint-search | Keyword search across creators and niches. | Free | | imprint-niche | Niche landscape: creators, score distribution, common risks. Free returns 42 public niches; paid returns all 180. | Free / Paid | | imprint-profile | Per-creator deep-dive. Free returns the card view; paid returns full sections. | Free / Paid | | imprint-filter | Structured filter across creators by score, niche, partnerships, etc. | Indie | | imprint-grep | Regex match across creator analyses. | Indie | | imprint-map | Question-across-set with optional Claude synthesis. Synthesis is Agency or pay-per-call. | Indie | | imprint-rank-creators-for-brand | Rank creators against a brand brief with evidence and exclusions. | Agency (5/mo) or pay-per-call |

Pricing

| Tier | Monthly | Calls | Notes | | --- | --- | --- | --- | | Free | $0 | 100 / day | Public niches and creator search. No card. | | Indie | $49 | 5,000 / mo | All read tools. | | Agency | $499 | 50,000 / mo | + 5 brand-creator ranks included, $99/call after. | | Pay-per-call | usage | usage | $99/rank, $5/map-synthesize. |

Programmatic use

import { imprintFetch, IMPRINT_TOOLS } from "@byimprint/mcp-server";

const tools = await imprintFetch("tools/list", {});
console.log(tools);

const search = await imprintFetch(
  "tools/call",
  { name: "imprint-search", arguments: { query: "quilting fabric" } },
  { apiKey: process.env.IMPRINT_API_KEY },
);
console.log(search);

For agent runtimes, prefer a real MCP client (@modelcontextprotocol/sdk) and point it at https://byimprint.com/mcp with your bearer token in Authorization.

CLI

npx @byimprint/mcp-server install
npx @byimprint/mcp-server tools
npx @byimprint/mcp-server discover
IMPRINT_API_KEY=imp_... npx @byimprint/mcp-server ping

Methodology

Every score traces back to YouTube Data API metrics, comment evidence, and the published six-axis framework: Voice, Audience, Product, Partnership, Risk, Reach. Read the full methodology at byimprint.com/methodology.

License

MIT. See LICENSE.