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

@fruition/unroo-client-mcp

v2.0.0

Published

MCP server that lets a client's AI assistant (Claude, ChatGPT, Cursor, etc.) read project context, submit bugs, comment, and pull infrastructure reports via UnRoo (app.unroo.io). Supports stdio (local tools) and connects to the remote HTTP endpoint for we

Readme

@fruition/unroo-client-mcp

MCP server that lets a client's AI assistant (Claude, ChatGPT, Cursor, etc.) read project context, submit bugs, comment, and pull infrastructure reports against the Fruition team's UnRoo workspace.

Two ways to connect

Option 1: Local (Claude Desktop, Claude Code, Cursor, Codex CLI)

Best for tools that run on your machine.

  1. Get a key. Log in to the UnRoo portal and visit /portal/access. Click "Generate key" and copy the value (shown once).
  2. Add to your .mcp.json (or Cursor's MCP settings, or Codex CLI config):
{
  "mcpServers": {
    "unroo": {
      "command": "npx",
      "args": ["-y", "@fruition/unroo-client-mcp"],
      "env": {
        "UNROO_CLIENT_KEY": "<paste your key>"
      }
    }
  }
}
  1. Restart your tool. Tools list_projects, submit_bug, get_security_report, etc. should appear.

Option 2: Remote / Web (ChatGPT connectors, Claude.ai custom connectors)

Best for web-based AI tools that support remote MCP.

  1. Log in to the UnRoo portal and visit /portal/access. Make sure MCP access is enabled.
  2. In ChatGPT or Claude.ai, add a custom connector with this URL:
https://app.unroo.io/api/external/client/mcp
  1. Click "Connect." You'll be redirected to UnRoo to log in and authorize. After approving, the connector has access to your projects, tickets, and reports.
  2. No package install needed — the platform connects directly to UnRoo.

Tools

| Tool | Purpose | |---|---| | list_projects | Projects this client owns | | get_project_context | Briefing for one project (counts, decisions, KB titles) | | list_bugs | Bug/task list (optional status, project filters) | | get_bug | Single bug + client-visible comments | | get_bug_updates | Incremental check since an ISO timestamp | | submit_bug | Open a new bug | | add_comment | Reply on a bug (always client-visible) | | list_kb_articles | Public KB articles | | read_kb_article | Full KB article body | | list_sites | Client's websites — domain, CMS, scan date, findings count | | get_site_status | Per-site: security findings, backup status, WAF status | | get_security_report | Security scan findings by severity across all sites | | get_backup_report | Backup status across all sites | | get_uptime_status | Uptime status across all sites | | get_launches | Launch info for the client's projects |

Environment (local mode)

| Var | Default | Notes | |---|---|---| | UNROO_CLIENT_KEY | (required) | Per-client API key | | UNROO_BASE_URL | https://app.unroo.io | Override for staging or local dev |

Webhooks (alternative to polling)

Instead of get_bug_updates, register a webhook from the portal — UnRoo will POST you HMAC-signed events on bug.created / bug.status_changed / comment.client_visible. See the portal "Webhooks" section.

Permissions

The Fruition admin can disable individual features per client:

  • allow_submit_bugs
  • allow_comments
  • allow_kb_read
  • allow_infra_read

Disabled features return HTTP 403 with {"error": "Feature 'X' is not enabled for your account."}. The master mcp_enabled toggle on the client account turns everything off at once.

Cross-client isolation

All requests are server-side filtered by the client your key belongs to. There is no way to read another client's data with your key — this is enforced at the route handler in UnRoo, not in this package. OAuth tokens are scoped to a single billing_client_id and cannot access other clients.

Reports & infrastructure data

The infrastructure tools (list_sites, get_site_status, get_security_report, get_backup_report, get_uptime_status, get_launches) return derived summaries only — no raw scan output, no credentials, no origin IPs, no internal notes. This follows the client-intelligence platform doctrine: clients see published/derived data, never raw operational data.

License

UNLICENSED — distribution is at the discretion of Fruition.