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

mcp-config-validator

v1.0.1

Published

Free CLI tool to validate MCP server configurations. Checks protocol compliance, schema validity, and production readiness.

Readme

MCP Server Validator

npm version License: MIT MCP Compatible

Validate your MCP server configurations in seconds. Catch protocol compliance issues, schema errors, and production readiness gaps before deploying.

Try the Web Version | MCP Linter Pro ($9)

Install

npm install -g mcp-validator

Usage

# Validate a config file
mcp-validate ./server.json

# Validate from stdin (pipe-friendly)
cat server.json | mcp-validate -

# Validate a remote server config
mcp-validate --url https://your-server.com/config

# Show all options
mcp-validate --help

What It Checks

Protocol Compliance

  • Server name and version fields
  • Transport type validation (stdio, SSE, Streamable HTTP)
  • JSON-RPC 2.0 message format
  • Protocol version compliance

Tool Validation

  • Tool definitions and naming
  • Input schema structure (JSON Schema)
  • Required vs optional parameters
  • Description quality for AI agent discoverability

Production Readiness

  • Prompts and resources declarations
  • Error handling patterns
  • Security best practices
  • Documentation completeness

Example Output

  ✓ PASS Server name (Name: weather-server)
  ✓ PASS Version (Version: 1.0.0)
  ✓ PASS Transport type (Type: stdio)
  ✓ PASS Tools array (2 tool(s) defined)
  ✓ PASS get_weather description
  ✓ PASS get_weather inputSchema

  Summary: 6 passed, 0 warnings, 0 errors

  Configuration looks good!

CI/CD Integration

Add to your GitHub Actions workflow:

- name: Validate MCP Server
  run: |
    npm install -g mcp-validator
    mcp-validate ./server-config.json

Why Use This?

MCP is the standard for connecting AI agents to tools. A broken configuration means your server won't work with Claude Desktop, Cursor, or any MCP client. This validator catches issues before your users do.

Free tier (this tool): Config-level validation Pro tier ($9): Runtime testing with actual tool calls, custom rules, team features

Get MCP Linter Pro — Use code GITHUB50 for 50% off

Web Version

Prefer a browser? Try the interactive web validator — paste your config and get instant results with no install required.

Related

License

MIT


Built by ShadowCraft AI