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

@paraloncloud/mcp-rentals

v1.0.3

Published

MCP server for the ParalonCloud Rental API — let an AI agent rent, use, and stop GPUs from code.

Downloads

611

Readme

ParalonCloud Rentals — MCP server

Rent GPUs from inside your AI agent. This is an MCP server for the ParalonCloud Rental API: it lets Claude Code, Claude Desktop, Cursor, or any MCP client browse GPUs, start a rental, get its connection URL, and stop it — using natural language.

One key for everything: the same prlc_ key powers ParalonCloud's OpenAI-compatible inference API. Build an agent that calls a model and rents the GPU to run the heavy job.

Tools

| Tool | What it does | Cost | | --- | --- | --- | | list_gpus | List rentable GPUs with price, VRAM, compute capability, country | free | | get_balance | Your credit balance | free | | create_rental | Start a Jupyter rental (async → poll) | spends credits | | get_rental | Status + connection URL once running | free | | list_rentals | Your active rentals (status: "all" for history) | free | | destroy_rental | Stop a rental and stop billing | — |

Setup

1. Get a key with the rental scope

  1. Create an API key in the Console.
  2. Turn on the GPU Rentals scope for that key (rentals are opt-in).
  3. Optionally set Max rentals running at once as a safety cap.

Use a dedicated key for the agent, not your production key.

2. Add it to your MCP client

The client passes your key via the PARALON_API_KEY env var — you never edit the server.

Claude Desktopclaude_desktop_config.json:

{
  "mcpServers": {
    "paraloncloud-rentals": {
      "command": "npx",
      "args": ["-y", "@paraloncloud/mcp-rentals"],
      "env": {
        "PARALON_API_KEY": "prlc_your_key_here"
      }
    }
  }
}

Claude Code — one command:

claude mcp add paraloncloud-rentals \
  --env PARALON_API_KEY=prlc_your_key_here \
  -- npx -y @paraloncloud/mcp-rentals

Cursor.cursor/mcp.json (same shape as Claude Desktop above).

Optional env: PARALON_BASE_URL (defaults to https://paraloncloud.com/api/v1).

3. Try it

"List the cheapest GPUs I can rent, then start a 2-hour Jupyter rental on one with at least 24GB of VRAM."

The agent calls list_gpus, picks a node, and calls create_rental with hours: 2. It then polls get_rental for the Jupyter URL. Say "stop it" and it calls destroy_rental.

Safety

  • create_rental and destroy_rental change what you're billed — your MCP client will ask you to approve them (Claude Code/Desktop confirm tool calls by default). Keep that on.
  • create_rental auto-generates an idempotency key, so a retried call never starts a second GPU.
  • Pass hours so a rental auto-stops even if the agent forgets to.
  • The key's max_active_rentals limit (set in the Console) caps concurrency regardless.

Run locally (dev)

PARALON_API_KEY=prlc_your_key_here node server.js

Links

  • Rental API docs: https://paraloncloud.com/docs/rental-api
  • Console (create keys): https://paraloncloud.com/console
  • Inference API: https://paraloncloud.com/docs/inference-api

MIT