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

@plainly-videos/mcp-server

v1.0.5

Published

MCP server for Plainly Videos that allows browsing designs and projects, as well as rendering videos.

Readme

Plainly's Official MCP Server

smithery badge

Implementation of MCP server for Plainly in NodeJS. Enables LLM clients to connect and interact with Plainly APIs.

🎥 Demo

📋 Prerequisites

▶️ How to Run

Install via npm

  1. Get your Plainly API key
  1. Add config to your editor

    {
      "servers": {
        "plainly": {
          "command": "npx",
          "args": ["-y", "@plainly-videos/mcp-server@latest"],
          "env": {
            "PLAINLY_API_KEY": "<PLAINLY_API_KEY>"
          }
        }
      }
    }

    🔑 Replace <PLAINLY_API_KEY> with your actual API key.

Install via Smithery

Go to Smithery Plainly MCP page, select your LLM client, and copy the generated command.

For example, with Claude as the client:

npx -y @smithery/cli@latest install @plainly-videos/mcp-server --client claude --key <YOUR_SMITHERY_KEY>

🔑 Replace <YOUR_SMITHERY_KEY> with your Smithery API key.

🛠️ Available Tools

  • list_renderable_items - returns a list of all criteria matching designs and custom projects for authenticated user
  • get_renderable_items_details - returns details of a single design or custom project, such as: required and optional parameters, preview links, aspect ratios, etc.
  • render_item - submits a render with all needed parameters
  • check_render_status - checks the render status and report error or preview links

🗣️ Prompts & Resources

This implementation does not include prompts or resources from the MCP specification. However, this may change in the future when there is broader support across popular MCP clients.

🚧 Development Mode

If you want to run the server in development mode, you can install dependencies and run the server using the following command:

  1. Clone, install, and build:
git clone [email protected]:plainly-videos/mcp-server.git
cd mcp-server

yarn install
yarn build
  1. Add your API key in .vscode/mcp.json
{
  "servers": {
    "plainly": {
      "command": "node",
      "args": ["<FULL PATH TO dist/cli.js>"],
      "env": {
        "PLAINLY_API_KEY": "<PLAINLY_API_KEY>"
      }
    }
  }
}
  1. Start MCP server from .vscode/mcp.json

📄 Plainly Developer Resources