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

ergora-specialists-mcp

v0.3.2

Published

Ergora Specialists — 17 business-vertical knowledge specialists (sales, marketing, ads, ecommerce, finance, HR, legal, PR...) as MCP tools for Claude, Cursor and any MCP client.

Downloads

77

Readme

Ergora Specialists — MCP

17 business-vertical knowledge specialists — Sales, Marketing, Paid Ads, Content, Ecommerce, Entrepreneurship, Business Strategy, Community, Creator, Design & UX, Developer, Finance, HR, Leadership, Legal, Local Marketing, PR — as tools for Claude Desktop, Claude Code, Cursor and any MCP client.

Each tool returns summarised, cited insights from a curated knowledge base of leading practitioners, best-selling books and academic/regulatory sources. Free tier: 5 queries/day anonymous, 30/day with an email.

Ergora runs all 17 of these as full AI specialist agents with unlimited use → https://ergora.app

Install — remote server (nothing to download)

Server URL: https://ergora-specialists-gateway.contact-c9e.workers.dev/mcp (MCP Streamable HTTP, no auth)

Claude Code

claude mcp add --transport http ergora-specialists https://ergora-specialists-gateway.contact-c9e.workers.dev/mcp --header "X-Ergora-Email: [email protected]"

Claude Desktop / claude.ai — Settings → Connectors → Add custom connector → paste the server URL. There is no login step; when Claude asks, give it your email to unlock 30 queries/day (it passes it in the tool's email argument).

Cursor.cursor/mcp.json:

{
  "mcpServers": {
    "ergora-specialists": {
      "url": "https://ergora-specialists-gateway.contact-c9e.workers.dev/mcp",
      "headers": { "X-Ergora-Email": "[email protected]" }
    }
  }
}

Any other MCP client — point it at the URL with the Streamable HTTP transport. The server is stateless (POST-only, JSON responses). The optional X-Ergora-Email header identifies you for the 30/day free tier.

Install — local stdio server (npm)

Package: ergora-specialists-mcp (Node 18+).

Claude Code

claude mcp add ergora-specialists -e [email protected] -- npx -y ergora-specialists-mcp

Claude Desktop / Cursor — claude_desktop_config.json / .cursor/mcp.json:

{
  "mcpServers": {
    "ergora-specialists": {
      "command": "npx",
      "args": ["-y", "ergora-specialists-mcp"],
      "env": { "ERGORA_EMAIL": "[email protected]" }
    }
  }
}

From source instead: git clone https://github.com/ergoracloud/ergora-specialists && cd ergora-specialists/mcp && npm install, then point command at node /absolute/path/to/mcp/index.js.

Tools

  • ergora_sales, ergora_marketing, ergora_ads, ergora_content, ergora_ecommerce, ergora_entrepreneurship, ergora_business_strategy, ergora_community, ergora_creator, ergora_design, ergora_developer, ergora_finance, ergora_hr, ergora_leadership, ergora_legal, ergora_local, ergora_pr — one per specialist. Input: { query, top_k?, email? }.
  • ergora_ask — cross-vertical (optionally vertical).
  • ergora_list_specialists — what's available.

Free tier

Your email is the access key: 30 queries/day. Supply it as the X-Ergora-Email header (remote), ERGORA_EMAIL (local), or the email tool argument. Without one, requests are limited to 5/day per IP. Fair use: about 30 requests per minute per caller; bursts beyond that get a 429. Emails are only ever used for your quota and (if the domain accepts mail) an occasional Ergora update — no third-party sharing.

How it works

Queries go to a Cloudflare Worker gateway which embeds the question and searches an isolated vector store of the Ergora knowledge base (never Ergora's production customer database). Results are summaries with links to the original sources — no verbatim reproduction.

Architecture (this repo)

  • worker/ — Cloudflare Worker: remote MCP endpoint (/mcp) + JSON API (/query), Vectorize ergora-kb, KV rate-limit + lead capture. Deploy: cd worker && npx wrangler deploy.
  • mcp/ — the local stdio MCP server (thin client of /query). node e2e-test.mjs (stdio) and node e2e-remote-test.mjs (remote) are end-to-end checks against the live gateway.

MIT — see LICENSE.