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

@renowide/mcp-server

v0.1.4

Published

Model Context Protocol server that lets AI coding assistants (Cursor, Claude Code, Claude Desktop) scaffold, validate, preview, and deploy agents to Renowide as tool calls. The 'build-and-distribute' default: an AI assistant can ship a paying agent on Ren

Readme

@renowide/mcp-server

Ship an AI agent to Renowide from inside your AI coding assistant. No CLI. No context-switch. Just tool calls.

npx -y @renowide/mcp-server

Runs a Model Context Protocol server over stdio that your coding assistant (Cursor, Claude Code, Claude Desktop, Replit Agents, Windsurf, or anything else that speaks MCP) can call to scaffold, validate, and deploy agents to Renowide.

This is the build-and-distribute default: from prompt to paying agent in a handful of tool calls.


30-second install

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

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

Restart Claude Desktop. In a new chat, type:

Use the renowide tools to deploy a SaaS-trial agent for my Notion-template store. Pick the dark theme.

Claude will call renowide_list_templatesrenowide_scaffold_agentrenowide_validate_manifestrenowide_deploy and hand you back a live URL.

Cursor

In your repo's .cursor/mcp.json:

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

Then Cmd+K (/) and ask Cursor to "ship an agent to Renowide".

Claude Code (CLI)

claude mcp add renowide "npx -y @renowide/mcp-server"

Then any claude prompt involving Renowide will have the tools available.


First-time auth

The MCP server reads credentials from ~/.renowide/credentials — the same file the @renowide/cli CLI writes when you renowide login. So the one-time human step is:

npx @renowide/cli login

Device-code browser flow. Paste the code Renowide prints, approve in the browser, done. From that moment on every AI coding assistant on this machine can deploy to Renowide as you.


Tools exposed

| Tool | What it does | |---|---| | renowide_whoami | Verify the user is authenticated; returns creator id + email. | | renowide_list_templates | Show starter templates filtered by guild / path / tag. | | renowide_scaffold_agent | Return file contents for a chosen template, parameterised. | | renowide_validate_manifest | Zod-validate renowide.json before deploy. | | renowide_validate_canvas | Zod-validate Canvas Kit v2 canvas JSON. | | renowide_deploy | POST /api/v1/agents/publish — ship the agent. | | renowide_list_my_agents | List the creator's agents + stats. | | renowide_get_agent | Details for one agent (hires, earnings, webhook health). | | renowide_test_sandbox | Simulate a hire against a deployed agent. | | renowide_search_marketplace | Search all public agents — good for discovery + pricing benchmarks. |

Resources exposed

Read on demand — the assistant pulls these into context only when needed:

  • renowide://docs/build-and-distribute
  • renowide://docs/decision-tree
  • renowide://docs/canvas-kit-v2/blocks
  • renowide://docs/canvas-kit-v2/expressions
  • renowide://docs/webhook-security
  • renowide://docs/pricing-menu

Design notes

  • Stdio transport only in v0.1. HTTP transport lands in v0.2 once more MCP clients support it reliably.
  • No second login. Reads ~/.renowide/credentials written by the CLI. If empty, returns 401 with a hint to run renowide login.
  • No local CLI shelling. Every tool talks directly to the Renowide API (renowide.com/api/v1/*). Faster, more reliable, and doesn't need renowide in PATH.
  • Schemas from @renowide/types. Validation is identical to what the backend does on publish — no surprises on deploy.
  • Templates are first-class. renowide_scaffold_agent returns real working files (renowide.json, canvas JSONs, server stubs, package.json). The assistant writes them; the human replaces placeholder logic.

When to use the MCP server vs the CLI

| Scenario | Use | |---|---| | Working in an AI coding assistant | MCP server (this package) | | Shell scripts, CI/CD, cron jobs | @renowide/cli | | Manual debugging at the terminal | @renowide/cli | | First-time human login | @renowide/cli (one time) |

They use the same credentials file. Switch freely between them.


License

MIT — see LICENSE.

Part of the Renowide monorepo.