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

@rend-sdk/mcp

v0.1.1

Published

MCP server for the Rend public API.

Readme

@rend-sdk/mcp

MCP server for the Rend public API. It exposes upload, asset, playback, delete, and analytics tools for agents while keeping API keys out of tool output.

Install

npm install -g @rend-sdk/mcp

Or run it with npx from an MCP client config.

Configuration

Set the API key in the MCP client environment. The server reads:

  • REND_API_KEY or REND_MCP_API_KEY
  • REND_API_BASE_URL or REND_MCP_API_BASE_URL, default https://api.rend.so
  • REND_SITE_BASE_URL or REND_MCP_SITE_BASE_URL, default https://rend.so
  • REND_MCP_MAX_UPLOAD_BYTES, default 536870912

The API key is never accepted as a tool argument and is not returned in tool output.

{
  "mcpServers": {
    "rend": {
      "command": "npx",
      "args": ["-y", "@rend-sdk/mcp"],
      "env": {
        "REND_API_KEY": "rend_live_...",
        "REND_API_BASE_URL": "https://api.rend.so",
        "REND_SITE_BASE_URL": "https://rend.so"
      }
    }
  }
}

Local development can point to local services:

{
  "mcpServers": {
    "rend-local": {
      "command": "node",
      "args": ["packages/mcp/dist/bin/rend-mcp.js"],
      "env": {
        "REND_API_KEY": "rend_test_...",
        "REND_API_BASE_URL": "http://127.0.0.1:4000",
        "REND_SITE_BASE_URL": "http://127.0.0.1:3000"
      }
    }
  }
}

Tools

  • rend_upload_video: upload a local MP4 or QuickTime file.
  • rend_get_asset: fetch asset state and public artifact summaries.
  • rend_list_assets: list assets for the API key organization.
  • rend_get_playback: fetch tokenless playback bootstrap plus embed/watch URLs.
  • rend_delete_asset: delete an asset.
  • rend_get_analytics: fetch playback request analytics.

Safety

The server uses @rend-sdk/client, which is generated from docs/openapi/rend-public-api.openapi.json. It does not call operator or server-only endpoints.

Before upload, the server checks the local file size and rejects detectable non-video content. Playback output is allowlisted to public Rend, local, or same-origin artifact URLs, and token, cookie, authorization, and signed URL fields are redacted.

Errors are returned as stable JSON:

{
  "status": "error",
  "error": {
    "code": "not_playable",
    "message": "Asset is not playable yet.",
    "asset_id": "018f52b2-5401-7f3b-ae2e-4923f4d62120"
  }
}

Expected codes include not_playable, limit_exceeded, unauthorized, suspended, and deleted.

Local Smoke

From the Rend repository:

bun install
bun run mcp:smoke

The smoke creates or uses a local scoped API key, uploads fixtures/media/rend-fixture.mp4 through the MCP tool, waits for a playable asset, fetches playback, fetches analytics, deletes the asset, and checks that tool output does not include signed playback material. By default it starts the local Docker backend and a local site on an isolated port; set REND_MCP_SMOKE_SKIP_BACKEND_UP=1 or REND_SITE_BASE_URL to reuse running services.