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

@donobu/mcp

v2.1.3

Published

MCP Server bridge for Donobu API

Readme

Donobu MCP Server

This is a Model Context Protocol (MCP) server that acts as a bridge between an AI IDE (like Cursor or VS Code with Copilot) and the Donobu Studio application. It lets you test features of your application in a browser, while you (or your AI) are developing it, and can generate Donobu-powered Playwright tests based on successful test runs.

Tools Provided

test_website_feature_in_browser

Your LLM can use this tool to test the functionality of a website feature, whether new or in development, in a browser. Donobu Studio will create a new autonomous test run (or "flow") and start the execution of the test run.

check_test_run_status_and_results

Use this tool to get the status and (if completed) the results of a specific test run (or "flow"). Once the test run is complete, you will also have access to the complete test run video, or an image of the final state of the browser if no video is available. You can also look back at previous flows (or even watch the progress of the current one) in the Donobu Studio application.

create_test_file_for_test_run

Use this tool to generate a Donobu-powered Playwright test file after a successful test run, and add it to your project. The test file will contain the steps of the test run, and the expected results.

Prerequisites

  • Donobu Studio desktop application. Make sure the application is running.

Setup

The easiest way to use this MCP server is via npx. Add this to your MCP configuration file:

{
  "mcpServers": {
    "donobu": {
      "command": "npx",
      "args": ["@donobu/mcp@latest"]
    }
  }
}

This will automatically download and run the latest version of the server without requiring manual installation or updates.

Configuration file locations vary slightly by MCP client. Most support both a home directory MCP configuration file, which will apply to all projects, and project-specific MCP configuration file. Here are the locations of each for some popular MCP clients:

Claude Code (CLI and VS Code extension)

  • ~/.claude.json (in your home directory)
  • .mcp.json (in a project directory)

Or just type this on the command line:

claude mcp add donobu -- npx @donobu/mcp@latest

Cursor

  • ~/.cursor/mcp.json (in your home directory)
  • .cursor/mcp.json (in a project directory)

Or just click on this link:

Add Donobu MCP to Cursor

GitHub Copilot

  • ~/.copilot/mcp-config.json (in your home directory)
  • .vscode/mcp.json (in a project directory)

Codex

  • ~/.codex/config.json (or ~/.codex/config.toml, but this will be a slightly different format)
  • .mcp.json (in a project directory)