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

@auditae/mcp

v0.1.0

Published

Stdio bridge to the AuditAE remote MCP server. Run AuditAE's AEO / brand-citation audit tools from any MCP client (Claude Desktop, Cursor, etc.).

Downloads

83

Readme

@auditae/mcp

A zero-install stdio bridge to the AuditAE hosted MCP server. It lets any MCP client — including ones that only speak the local stdio transport — use AuditAE's answer-engine-optimization toolset: brand citation checks, share-of-voice, competitor mining, technical site audits, and the full WordPress automation surface.

It's a transparent proxy: it forwards JSON-RPC verbatim to https://auditae.app/api/mcp, so the live endpoint is always the source of truth for which tools exist. Nothing to update when AuditAE ships new tools.

Quick start

  1. Create an org-scoped API key (ae_live_…) at auditae.app/dashboard/keys.
  2. Add this to your MCP client config:
{
  "mcpServers": {
    "auditae": {
      "command": "npx",
      "args": ["-y", "@auditae/mcp"],
      "env": {
        "AUDITAE_API_KEY": "ae_live_xxxxxxxx_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
      }
    }
  }
}

That's it. The same ae_live_… key authenticates every tool call, and per-call billing happens server-side exactly as it does over the REST API.

Prefer a direct remote connection?

If your client supports remote (url-based) MCP servers, you don't need this package at all — point it straight at the endpoint:

{
  "mcpServers": {
    "auditae": {
      "url": "https://auditae.app/api/mcp",
      "headers": { "Authorization": "Bearer ae_live_…" }
    }
  }
}

This npx package exists for clients that only support command/stdio.

Environment variables

| Variable | Required | Default | Purpose | |---|---|---|---| | AUDITAE_API_KEY | yes | — | Your org-scoped ae_live_… key. Sent as a Bearer token on every request. | | AUDITAE_MCP_URL | no | https://auditae.app/api/mcp | Full endpoint URL. Override only for self-hosted / preview deployments. | | AUDITAE_API_BASE_URL | no | — | Origin only (e.g. https://staging.auditae.app); /api/mcp is appended. Ignored if AUDITAE_MCP_URL is set. |

What you get

37 tools across three families — citation & mentions, technical & site health, and WordPress automation. See the full catalog and pricing at auditae.app/dashboard/docs.

License

MIT