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

@tomsmart-ai/mcp-audit-mcp-server

v0.1.0

Published

MCP server for auditing other MCP server implementations. Checks protocol compliance, tool schema quality, tier design. Used internally for AI Orchestration Audit-as-a-Service Tier 2-3 deliverables.

Readme

@tomsmart-ai/mcp-audit-mcp-server

MCP server for auditing other MCP server implementations. Meta-level tooling — checks protocol compliance, tool schema quality, free/paid tier boundary clarity. Used internally for AI Orchestration Audit-as-a-Service. Open-source MIT.

If you're building an MCP server and want a sanity check before publishing, point this server at your source file (compiled or TS) and it returns:

  • Tool schema findings (missing descriptions, vague names, missing protocol handlers)
  • Protocol compliance check (Server init, transport, handlers, capabilities, console.log stdio pollution)
  • Tier design audit (free/paid boundaries clear at runtime?)

Tools

tool_schema_audit

Parses tool definitions, flags:

  • MED: missing description, short descriptions (< 30 chars), missing return format
  • LOW: vague tool names (execute / run / helper / util), overly long descriptions (> 800 chars)
  • HIGH: protocol handlers missing (ListTools / CallTool)

protocol_compliance_check

Checks server source for:

  • HIGH: no Server() constructor, no transport setup, no ListTools/CallTool handlers, console.log() polluting stdio MCP transport
  • MED: missing capabilities declaration, no .catch() on async main (silent unhandled rejection)

tier_design_audit

Detects:

  • HIGH: multi-tier model implied (free + pro keywords present) but no rate limit logic OR no API key check OR no tier branching
  • HIGH: feature labeled "pro only" in code but no runtime tier check (documentation vs enforcement gap)
  • MED: tier keywords present but no if (tier === ...) branching

Returns also raw tier signals (boolean detection map) so you can see what was detected vs missed.

Install

npm install -g @tomsmart-ai/mcp-audit-mcp-server

Use with Claude Code

{
  "mcpServers": {
    "audit-mcp": {
      "command": "mcp-audit-mcp-server"
    }
  }
}

Then:

Audit my MCP server at /path/to/server/src/index.ts — check protocol compliance + tool schema quality + tier design.

Why this exists

I built mapper-mcp + 3 audit servers + reviewed many client servers. The same anti-patterns repeat: tool descriptions too vague for Claude to choose them, console.log polluting stdio transport, "pro tier" mentioned in code but never enforced at runtime, missing CallToolRequestSchema return format.

Open-source the checks, share the experience.

License

MIT

Author

Tom Smart — smartflowproai.com · @TomSmart_ai

Pair-built with Claude.