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

@tryaeos/mcp

v0.4.0

Published

MCP server for AEOS — analyze and fix AI discoverability using your host agent's LLM (Cursor, Claude). No provider API keys required.

Downloads

498

Readme

@tryaeos/mcp

MCP server for AEOS — analyze and improve AI discoverability (SEO/AEO/GEO) from Cursor, Claude Desktop, or any MCP host.

Agent mode: the MCP server never calls OpenAI/Anthropic/etc. Your host agent's LLM does the creative work; AEOS handles analysis, validation, file writes, and dashboard sync.

Setup

Add to ~/.cursor/mcp.json or Claude Desktop config:

{
  "mcpServers": {
    "discoverability": {
      "command": "npx",
      "args": ["-y", "@tryaeos/mcp"],
      "env": {
        "DISCOVERABILITY_API_KEY": "sk_live_…",
        "DISCOVERABILITY_API_URL": "https://api.tryaeos.com"
      }
    }
  }
}

Get DISCOVERABILITY_API_KEY from the AEOS dashboard (Project → API Keys).

Tools

| Tool | Provider key? | Purpose | | ------------------ | ------------- | ------------------------------------ | | analyze | No | Local repo audit (read-only) | | analyze_url | No | Live URL crawl + audit | | sync | No | Fetch cloud project context | | fix_plan | No | Next fix task + prompts for your LLM | | fix_apply_patch | No | Apply PatchPlan JSON from your LLM | | optimize_prepare | No | Optimization brief + JSON schema | | optimize_submit | No | Upload agent-produced suggestions | | generate_prepare | No | Content briefs per type | | generate_submit | No | Write agent-produced content files |

Agent playbook

Fix discoverability issues

  1. Call fix_plan with { "dir": "/absolute/path/to/repo" }.
  2. If done is false, use prompt.systemMessage + prompt.userMessage with your model. Produce JSON matching prompt.responseContract.
  3. Call fix_apply_patch with { "dir": "…", "patch": { … } }.
  4. Repeat from step 1 (or use next in the apply response) until done is true.

Content optimization (advisory)

  1. optimize_prepare → run LLM with returned prompts → optimize_submit.

Generate content files

  1. generate_prepare → run LLM per brief → generate_submit.

CLI vs MCP

| | CLI (@tryaeos/cli) | MCP (@tryaeos/mcp) | | -------- | -------------------------------------- | ------------------------------- | | LLM | Your ANTHROPIC_API_KEY / etc. | Host agent (Cursor/Claude plan) | | Fix flow | Fully autonomous discoverability fix | Prepare/submit loop | | Best for | Terminal, CI | IDE assistants |

Development

pnpm --filter @tryaeos/mcp dev
pnpm --filter @tryaeos/mcp test
pnpm --filter @tryaeos/mcp build