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

salad-mcp-server

v1.0.1

Published

MCP Server for SaladCloud GPU provider services

Readme

Salad MCP Server

npm version

A Model Context Protocol (MCP) server for SaladCloud - the GPU provider with super nice features!

This MCP server provides seamless integration with SaladCloud's API, enabling Claude and other MCP clients to manage GPU workloads, container groups, inference endpoints, and more.

Features

  • Container Groups Management: Create, list, update, start, stop, and delete container groups
  • Inference Endpoints: List and manage inference endpoints
  • Queue Operations: Manage message queues for async workload processing
  • Logs & Monitoring: Access system logs and workload errors
  • Quotas: Check organization resource quotas
  • LLM-as-Judge Auto-Eval: Comprehensive integration testing using Claude API

Installation

Quick Start (Recommended)

Use npx to run without installation:

npx salad-mcp-server

From npm

npm install -g salad-mcp-server
salad-mcp-server

From Source

npm install
npm run build

Configuration

Set your SaladCloud API key as an environment variable:

export SALAD_API_KEY=your_api_key_here
export SALAD_ORG_NAME=your_organization_name

For auto-eval testing, also set:

export CLAUDE_API_KEY=your_claude_api_key_here

Usage

As MCP Server

Add to your MCP client configuration (e.g., Claude Desktop):

Using npx (recommended):

{
  "mcpServers": {
    "salad": {
      "command": "npx",
      "args": ["salad-mcp-server"],
      "env": {
        "SALAD_API_KEY": "your_api_key_here",
        "SALAD_ORG_NAME": "your_organization_name"
      }
    }
  }
}

Using local installation:

{
  "mcpServers": {
    "salad": {
      "command": "node",
      "args": ["/path/to/salad_mcp/dist/index.js"],
      "env": {
        "SALAD_API_KEY": "your_api_key_here",
        "SALAD_ORG_NAME": "your_organization_name"
      }
    }
  }
}

Run Auto-Eval CLI

Test the full integration with LLM-as-judge evaluation:

npm run eval

Run Integration Tests

npm test

Available Tools

  • list_container_groups: List all container groups in an organization/project
  • get_container_group: Get details of a specific container group
  • create_container_group: Create a new container group
  • update_container_group: Update an existing container group
  • start_container_group: Start a container group
  • stop_container_group: Stop a container group
  • delete_container_group: Delete a container group
  • list_inference_endpoints: List available inference endpoints
  • get_quotas: Get organization resource quotas
  • list_queues: List message queues
  • create_queue: Create a new message queue
  • get_queue: Get queue details
  • delete_queue: Delete a queue

API Reference

Based on SaladCloud API Documentation

Sources

License

MIT