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

marketingos-mcp

v2.0.0

Published

MarketingOS — a near-zero-cost MCP server: 22 marketing frameworks as 25 deterministic tools plus a site-signal scraper and a full system-builder. No LLM, no API keys.

Readme

MarketingOS MCP

A near-zero-cost Model Context Protocol server that turns all 22 MarketingOS frameworks into 25 deterministic tools your AI assistant can call — plus a site-signal scraper and a one-shot system-builder.

  • No LLM, no API keys. Every analysis tool is a pure rule engine — the only model in the loop is your own client (Claude Code, Cursor, OpenCode, Codex). Runs on your machine.
  • Deterministic. Same input → same output. Auditable, testable, free to run.
  • One network exception: scrape_business_signals and the URL mode of build_marketing_system fetch the target site (via headless Chromium) and extract signals with regex/DOM rules. That page request is the only network call in the whole server — nothing is ever sent to an external API, and no page content ever leaves your machine. Everything else is fully offline.

Tools

Foundation & Audience (v1) — search_frameworks, classify_business, audit_marketing, score_funnel, plan_content, optimize_offer, rank_audience, retention_hooks

Offer & Scalingclassify_product_type (Commodity/Product/Investment), diagnose_revenue_stage (Validation/Systemization/Amplification)

Funnelscheck_sales_page_economics (AOV vs CPA+COGS), score_lead_engine (Ice→Cold→Warm→Hot→Client), score_prospect_fit (5-star checklist), map_cash_machine (service pipeline), build_launch_checklist (minimal launch plan)

Contentgenerate_hook_wheel_ideas, generate_growth_wheel_calendar, generate_b2b_content_plan, generate_b2c_content_plan, generate_ad_script (6-beat video), diagnose_content_growth_phase, build_growth_system_calendar

Storytellinggenerate_story_map (scene→conflict→stakes→climax→resolve)

Intake & orchestrationscrape_business_signals (meta/pricing/CTA/socials/reviews/email-capture/blog cadence), build_marketing_system (give it a URL and/or facts → a full consolidated system with prioritized next steps)

Diagnostic tools return scores + fixes; generative tools return real drafted deliverables (calendars, hooks, ad scripts, story maps) — all rule/template-based, never an LLM call.

Install

Once published, every client points at npx -y marketingos-mcp — nothing to clone or run manually.

Claude Code

claude mcp add marketingos -- npx -y marketingos-mcp

Cursor~/.cursor/mcp.json

{
  "mcpServers": {
    "marketingos": { "command": "npx", "args": ["-y", "marketingos-mcp"] }
  }
}

OpenCodeopencode.json

{
  "mcpServers": {
    "marketingos": { "command": "npx", "args": ["-y", "marketingos-mcp"] }
  }
}

Codex~/.codex/config.toml

[mcp_servers.marketingos]
command = "npx"
args = ["-y", "marketingos-mcp"]

Run from source (before publishing)

npm install
npx playwright install chromium   # one-time, only needed for the scraper / URL mode
npm run build
node dist/index.js                # speaks MCP over stdio

Then point any client's command/args at node + the absolute path to dist/index.js.

The 23 offline tools work without Chromium. Only scrape_business_signals and build_marketing_system's URL mode need it; they return a clear "run npx playwright install chromium" message if it's missing.

Develop

npm run build   # tsc -> dist/
npm test        # build + node --test (one assertion per tool)

Test tools interactively with the official inspector (free, no client needed):

npx @modelcontextprotocol/inspector node dist/index.js

How the rules are authored

The original 8 tools live in src/data.ts (lookup tables) and src/engine.ts (scoring). The 15 v2 framework tools are grouped by category under src/frameworks/ (offer-scaling.ts, funnels.ts, content.ts, storytelling.ts) with shared helpers in src/util.ts; the scraper is src/scraper.ts and the orchestrator is src/build-system.ts. engine.ts re-exports every framework module so all logic imports from one place. Edit the tables to tune the intelligence; no model retraining, ever.

License

MIT © Mohammad Ibrahim Khail