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

@chinchillaenterprises/amplify-docs-simple

v2.1.0

Published

MCP Server for AWS Amplify documentation - serves MDX directly with Next.js filtering

Downloads

7

Readme

Amplify Docs Simple

A simple MCP server that serves pre-filtered AWS Amplify Next.js documentation. No complex transformations, no JSON generation, just clean MDX content.

What's Included

  • 883 AWS Amplify documentation files
  • Pre-filtered for Next.js content only
  • Full-text search with 10,000+ indexed keywords
  • Searches actual content, not just file names
  • Removes iOS/Android/Flutter specific code
  • Keeps universal documentation
  • 6MB total size (down from 17MB)

Philosophy

Instead of complex MDX parsing and transformation:

  1. Pre-filter AWS docs for Next.js content
  2. Build a simple search index
  3. Serve the MDX files directly
  4. Let AI understand the natural documentation

Installation

# Install globally
npm install -g @chinchillaenterprises/amplify-docs-simple

# Or use with npx
npx @chinchillaenterprises/amplify-docs-simple

Usage with Claude

# Add to Claude
claude mcp add amplify-docs-simple -s user -- npx @chinchillaenterprises/amplify-docs-simple

Tools

Only 3 simple tools:

search_amplify_docs

Full-text search across all documentation content.

  • query (required): Search terms (e.g., "schedule lambda function", "EventBridge", "cron")
  • category (optional): Filter by auth, storage, data, functions, ai, general

Now searches inside documentation content, not just titles!

get_amplify_doc

Get the full MDX content of a documentation file.

  • path (required): Path from search results

list_amplify_categories

List all categories and document counts.

Example

Human: How do I implement social login?

Claude: Let me search for social login documentation.
[Calls search_amplify_docs with query "social login auth"]

Here are the relevant docs:
1. **Add social provider sign-in**
   Category: auth
   Path: `src/pages/[platform]/build-a-backend/auth/add-social-provider/index.mdx`

[Calls get_amplify_doc with that path]

[Shows the full MDX content with all examples, prerequisites, and context]

Why This Works Better

  1. No Information Loss - All context, examples, and relationships preserved
  2. Simpler - ~200 lines of code vs 2000+
  3. Faster - No complex parsing/transformation
  4. More Accurate - AI sees docs exactly as AWS wrote them
  5. Easier Updates - Just pull new MDX files

License

MIT