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

@lilagents/mcp

v1.2.0

Published

The lilAgents free-tool fleet as an MCP server: detect a site tech stack, trace redirects, snapshot DNS, audit security headers, check AI-crawler access, indexability, JSON-LD, and Ahrefs Domain Rating. Built for AI agents.

Readme

lilAgents MCP

The lilAgents free-tool fleet, as tools for AI agents.

lilAgents grades how visible your site is to AI agents. This is the other half: the same checks, exposed over the Model Context Protocol so Claude, Cursor, and any MCP-aware agent can audit a website themselves. Every tool takes a URL or a domain and is a read-only public lookup.

A free tool by lilAgents.

Tools

| Tool | What it does | |------|--------------| | stack_detect | Fingerprints CMS, framework, hosting, backend, marketing tech, and AI website builders, plus RDAP registration and Ahrefs Domain Rating. Proxies the canonical lilStack service for exact parity. | | trace_redirects | Follows every redirect hop and reports each status code and Location. | | dns_snapshot | Full DNS snapshot (A, AAAA, MX, TXT, NS, CNAME, SOA, CAA) via DNS-over-HTTPS. | | check_headers | Reports which baseline security headers are present or missing. | | check_robots | Shows which major AI crawlers robots.txt allows or blocks, plus whether llms.txt exists. | | check_indexability | Reads canonical, meta robots, and X-Robots-Tag to say if a page is indexable. | | validate_schema | Extracts and validates every JSON-LD block and lists the schema.org types. | | domain_rating | The Ahrefs Domain Rating (0 to 100), with the required attribution. | | dmarc_check | The DMARC record and policy plus the SPF record for a domain. | | sitemap_check | Finds the sitemap and reports its type, entry count, and lastmod coverage. | | og_preview | Reads Open Graph and Twitter Card tags, the title and image a preview would show. | | alt_audit | Audits a page's images for descriptive, empty, and missing alt text. |

Install

Remote, no install (Claude.ai, ChatGPT, and any Streamable HTTP client)

Add this URL as a custom connector or remote MCP server:

https://mcp.lilagents.com

No install and no key. This is the hosted server; it runs the same tools as the package below.

Claude Code

Remote:

claude mcp add --transport http lilagents https://mcp.lilagents.com

Or local over stdio:

claude mcp add lilagents -- npx -y @lilagents/mcp

Claude Desktop, Cursor, and other stdio clients

Add this to the client's MCP config (claude_desktop_config.json, .cursor/mcp.json, and so on):

{
  "mcpServers": {
    "lilagents": {
      "command": "npx",
      "args": ["-y", "@lilagents/mcp"]
    }
  }
}

From source

git clone https://github.com/lilAgents/mcp.git
cd mcp
pnpm install
node src/index.js

Point your client's command at node with the args ["/absolute/path/to/mcp/src/index.js"].

Try it

Ask your agent things like:

  • "Use lilagents to detect what stripe.com is built with."
  • "Trace the redirects on this shortened link."
  • "Which AI crawlers does openai.com block in robots.txt?"
  • "Is this page indexable, and does it have valid JSON-LD?"

Develop

pnpm install
pnpm smoke      # spawns the server and calls every tool against live domains
pnpm inspect    # opens the MCP Inspector

Notes

  • Node 18 or newer (uses the built-in fetch).
  • Every outbound request is SSRF-guarded (no localhost or private addresses), follows redirects manually, and is time-boxed, matching the live lilAgents tools.
  • Ahrefs Domain Rating is returned with its required attribution and license link.

License

MIT. See LICENSE. Made with love by lilAgents.