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

@ceraph/mcp

v0.2.0

Published

Model Context Protocol server for Ceraph — run frontend test flows from Claude Code, Cursor, and other MCP-compatible AI coding tools.

Readme

@ceraph/mcp

Model Context Protocol server for Ceraph — run frontend test flows from Claude Code, Cursor, Codex, Windsurf, and other MCP-compatible AI coding tools.

Ceraph runs Playwright flows against your app to verify code changes work end-to-end. This package exposes Ceraph's test runner over the Model Context Protocol so your AI assistant can run tests, read results, and iterate without leaving the chat.

Requirements

  • Node.js >= 20
  • A repository hosted on GitHub
  • A Ceraph account (free trial available at https://ceraph.dev)

Install

npm install -g @ceraph/mcp

Or run on demand via npx:

npx -y @ceraph/mcp

Register with your AI tool

Add this to your MCP config (e.g. .mcp.json for Claude Code, or ~/.cursor/mcp.json for Cursor):

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

Then restart your AI tool. The next time you ask it to test changes, it will call ceraph_init to set up the repo (GitHub OAuth device flow — surface the verification URL + code to the user, then call ceraph_init again to resume).

Tools exposed

| Tool | Use it when | | ----------------------------- | ---------------------------------------------------------------------- | | ceraph_init | First call in a repo with no ceraph.config.js. Idempotent. | | ceraph_test_changes | Uncommitted edits — "test my changes." | | ceraph_test_file | Specific files just edited. Accepts a single path or an array. | | ceraph_test_pr | A PR number is in scope. Server-side run by default; local: true for fast Tier 0. | | ceraph_test_flow | Debug one named flow. | | ceraph_test_all | Full sweep. Expensive — only on explicit request. | | ceraph_dry_run | Preview planned flows without running Playwright. | | ceraph_pr_status | Poll a server-side PR run for completion. | | ceraph_skip / ceraph_mobile | Toggle the ceraph-skip / ceraph-mobile PR labels. | | ceraph_config | Read/write user preferences (skipDraftPrs, autoTestOptedOut, maxLocalRuns). | | ceraph_test_data_list | List managed test users. | | ceraph_test_data_health | Audit managed test users against current schema/graph. | | ceraph_test_data_provision | Provision auth credentials for the flows touched by a PR/diff/files. | | ceraph_test_data_cleanup | Delete a managed test user. |

Docs

Full documentation, pricing, and dashboard: https://ceraph.dev

License

Proprietary. See LICENSE.