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

mcp-render

v1.1.4

Published

MCP server for managing services on Render.com

Readme

MCP Render

This MCP (Model Context Protocol) server makes managing your Render.com account refreshingly easy. Skip the endless clicking, just connect it to your favorite MCP client (like Claude app or windsurf/cursor), tell your LLM what you want done, and let it handle your Render services for you. Deployment management without the UI hassle, because you’ve got better things to do.

About Render

Render is a cloud hosting platform offering a simplified way to build, deploy, and scale applications and websites.

MCP server capabilities

  • Get services list
  • Create new service
  • Get deploys list
  • Trigger deploy
  • Retrieve deploy
  • Cancel deploy
  • List environment variables
  • Add/update environment variables
  • Delete environment variables
  • Get logs

Commands to try

  • Get me render services list.
  • What is the status of my last deploy for <service name>.
  • Check logs for <service name>.
  • Redeploy <service name>.
  • Add new environment variable for <service name>, <env key> = <env value>.

Configuration

  1. Get your Render API key from Render Dashboard Steps:
  • Click on your profile picture in the top right corner
  • Select "Account Settings" from the dropdown menu
  • Navigate to the "API Keys" section
  • Click "Create API Key"

Usage

To integrate this server with the MCP client (ex: claude app, windsurf/cursor, cline), add the following to your app's server configuration:

NPX

{
  "mcpServers": {
    "render": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-render"
      ],
      "env": {
        "RENDER_API_KEY": "<YOUR_RENDER_API_KEY>"
      }
    }
  }
}

Testing the MCP server

Use MCP inspector tool to test MCP server -> MCP Inspector

Use command:

npx @modelcontextprotocol/inspector -e RENDER_API_KEY=<YOUR_RENDER_API_KEY> node build/index.js

Contributing

Contributions are welcome! Here's how you can help:

  1. Report Bugs

    • Search existing issues to avoid duplicates
    • Provide detailed steps to reproduce the issue
    • Include relevant error messages and screenshots if possible
  2. Suggest a new capability

    • Open a new issue with a clear description
    • Explain the use case and potential benefits
  3. Submit Pull Requests

    • Fork the repository
    • Create a feature branch (git checkout -b feature/amazing-feature)
    • Commit your changes (git commit -m 'Add some amazing feature')
    • Push to the branch (git push origin feature/amazing-feature)
    • Open a Pull Request

License

This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.