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

byterover-mcp

v0.2.2

Published

Model Context Protocol server for ByteRover - a sharing memory layer for your vibe coding agent

Readme

Give Cursor, Windsurf, Cline, and other AI-powered coding agents the shared long term memory so that they can perform the task well together with the relevant context with this Model Context Protocol server.

When Cursor has the knowledge about the codebase; experiences in the past about how it has solved the project's issues with human it's way better and cost effective than re-entering the reasoning loop again.

How it works

  1. Open your IDE's chat (e.g. agent mode in Cursor).
  2. Let the Agent know how they're going to use the external memories (cursor rules, etc.)
  3. Cursor will retrieve and store the relevant memories while performing the tasks

Getting Started

Many code editors and other AI clients use a configuration file to manage MCP servers.

The byterover-mcp server can be configured by adding the following to your configuration file.

NOTE: You can either provide your Byterover API key and user ID in the configuration or start the server without credentials and configure it later via the API endpoints. Instructions on how to create a Byterover API access token can be found here.

MacOS / Linux

{
  "mcpServers": {
    "Byterover Memory MCP": {
        "command": "npx",
        "args": [
          "-y",
          "byterover-mcp",
          "--byterover-public-api-key=YOUR-PUBLIC-KEY",
          "--user-id=YOUR-NAME",
          "--llm-key-name=YOUR-LLM-KEY-NAME",
          "--model=YOUR-LLM-MODEL-NAME"
        ]
      }
  }
}

Windows

{
  "mcpServers": {
    "Byterover Memory MCP": {
      "command": "cmd",
      "args": [
          "/c",
          "npx",
          "-y",
          "byterover-mcp",
          "--byterover-public-api-key=YOUR-PUBLIC-KEY",
          "--user-id=YOUR-NAME",
          "--llm-key-name=YOUR-LLM-KEY-NAME",
          "--model=YOUR-LLM-MODEL-NAME"
      ]
    }
  }
}

If you need more information about Byterover see the Byterover docs.

Running Without Initial Credentials

You can now start the Byterover MCP server without providing the API key and user ID upfront:

# Install the package
npm install -g byterover-mcp

# Start the server without credentials
byterover-mcp

# Start the server on a custom port
byterover-mcp --port 3334

The server will start with limited functionality and provide instructions on how to configure it. By default, the server runs on port 3333, but you can specify a custom port using the --port option as shown above.

Configuring via API

Once the server is running, you can configure it using the following API endpoints:

Update Credentials

curl -X POST http://localhost:3333/config \
  -H "Content-Type: application/json" \
  -d '{"byteroverPublicApiKey":"YOUR_API_KEY","userId":"YOUR_USER_ID"}'

Check Configuration Status

curl http://localhost:3333/config/status

Running with Node.js

If you're running the server directly with Node.js:

# Build the project
npm run build

# Start without credentials
node dist/cli.js

# Start on a custom port
node dist/cli.js --port 3334

# Or start with credentials
node dist/cli.js --byterover-public-api-key=YOUR_API_KEY --user-id=YOUR_USER_ID

# Start with credentials on a custom port
node dist/cli.js --byterover-public-api-key=YOUR_API_KEY --user-id=YOUR_USER_ID --port 3334

# You can also set the port using an environment variable
PORT=3334 node dist/cli.js

Requirements

  • Node.js version 20 or higher