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

exp-clldocs-mcp-server

v0.0.1

Published

Prototype MCP Server for CLL

Readme

How to Install and use the MCP Server

  1. Please check the latest docs for you IDE on how to add the following install config file for the MCP server. As an example, check against Cursor's MCP server config guidance here.
{
  "mcpServers": {
    "clldocs-mcp-server": {
      "args": ["exp-clldocs-mcp-server"], // TODO @zeuslawyer updatet
      "env": {
        "MCP_ANTHROPIC_API_KEY": "sk-XXXXXX"
      }
    }
  }
}

Make sure that you connect to the server correctly from Cursor Settings >> MCP

  1. Make sure to use agent mode in you IDE when invoking the MCP server.

Tools available

  1. ccip_chain_configurations. Open the Cursor AI chat window, and make sure you choose Agent mode, not the other modes. Encourage it to use MCP tools. Try the following prompt for example: Use MCP tools and get me the CCIP configs for arbitrum sepolia on testnet. The window will show you the data being passed into the tool function implementation as params. You may have to click RUN TOOL or something similar. Depending on the IDE, the agent may present the info to you differently but the configuration data should be what is returned by the tool, regardless of whether the Agent pretty prints it.

How to Develop the MCP Server

  1. pnpm install

  2. Then build the server with pnpm run build. Note: to make sure the server reflects your changes run this every time before you connect to the MCP server from your IDE as this is how it gets the latest tools and also the llms texts get copied over this way.

  3. If you want to check that the server is compiling and serving correctly run pnpm run serve in a new terminal window. But pnpm run build also checks that things compile correctly.

  4. Create a .cursor/mcp.json directory in your project root. Configure the MCP server as follows (note this is for stdio type MCP servers only that run locally on-machine only). VSCode has a different UI to access and start and restart MCP servers, but appears to pick up the mcp.json file.

    {
      "mcpServers": {
        "cll-mcp-server-dev": {
          // @dev Todo
          "command": "node",
          "args": ["/your/path/to/project-root/dist/index.js"], // @dev TODO
          "env": {
            "MCP_ANTHROPIC_API_KEY": "value" // @dev TODO. Get API KEY from https://docs.anthropic.com/en/api/getting-started
          }
        }
      }
    }

DEBUGGING WITH THE MCP INSPECTOR

NOTE This is useful for checking responses and checking that tools are registered in the MCP server etc. But the responses provided by the Agent are LLM-generated and will differ from the raw response returned from the actual tool implementations.

This is the Inspector Repo README

Open a new terminal that will run the inspector and show logs. Set your API Key in that terminal session as follows: export MCP_ANTHROPIC_API_KEY=sk-ant-etc-etc-etc

Then run the command : pnpm run inspect. The first time it will require you to approve the download of @modelcontextprotocol/inspector - just type y.

If successful you should see:

Starting MCP inspector...
⚙️ Proxy server listening on port 6277
🔍 MCP Inspector is up and running at http://127.0.0.1:6274 🚀

If you click on the localhost URL it will open up the inspector UI. On the left, enter the relevant API Keys required in the env vars. Then click Connect.

Pass the key params into the boxes indicated and run the tool to debug.