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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@lynx-js/docs-mcp-server

v0.2.1

Published

A MCP Server providing Lynx documentation resources for LLMs, with carefully designed prompting.

Readme

@lynx-js/docs-mcp-server

A MCP Server providing Lynx documentation resources for LLMs, with carefully designed prompting.

@lynx-js/docs-mcp-server lets your coding agent (such as Gemini, Claude, Cursor or Copilot) access Lynx documentation to assist you in development tasks. Therefore, we have specifically optimized llms.txt, a condensed version of the documentation site optimized for reading large models.

Requirements

Getting started

Add the following config to your MCP client:

{
  "mcpServers": {
    "lynx-docs": {
      "command": "npx",
      "args": [
        "-y",
        "@lynx-js/docs-mcp-server@latest"
      ]
    }
  }
}

@lynx-js/docs-mcp-server works best with MCP clients that supports Server Instructions, such as Claude Code. If you find your MCP client don't know about the MCP server, you can manually provide the following instructions (e.g. in your AGENTS.md, CLAUDE.md, or just send it along with your question):

For any questions or requirements regarding Lynx:

1. Use the "List Resources Tool" to list all Resources provided in MCP "lynx-docs".
2. First read MCP Resources "lynx-docs://llms.txt" (**REQUIRED**), this document is an ENTRYPOINT of all Lynx Docs.
3. After reading "lynx-docs://llms.txt", use the "Read MCP Resources Tool" to retrieve docs you need based on the user's questions or requirements, please read them proactively.
4. If available, prioritize obtaining Lynx-related information through MCP Resources tools over external web searches.
claude mcp add lynx-docs npx @lynx-js/docs-mcp-server@latest
codex mcp add lynx-docs -- npx @lynx-js/docs-mcp-server@latest
code --add-mcp '{"name":"lynx-docs","command":"npx","args":["@lynx-js/docs-mcp-server@latest"]}'

Install manually:

Go to Cursor Settings -> MCP -> New MCP Server. Use the config provided above.

Project wide:

gemini mcp add lynx-docs npx @lynx-js/docs-mcp-server@latest

Globally:

gemini mcp add -s user lynx-docs npx @lynx-js/docs-mcp-server@latest

Alternatively, follow the MCP guide and use the standard config from above.

Credits

This project is inspired by Svelte MCP server. Both the implementation and documentation have been adapted and referenced from the original MCP server.