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

@relay-org/relay-mcp

v0.1.88

Published

Model Context Protocol server for Relay — deploy, inspect, and control apps from any MCP-aware AI tool

Readme

relay-mcp

Model Context Protocol server for Relay. Lets any MCP-aware AI tool (Cursor, Claude Desktop, VS Code Copilot, etc.) inspect and control a Relay agent directly.

Setup

Add to your MCP config (~/.cursor/mcp.json, Claude Desktop config, etc.):

{
  "mcpServers": {
    "relay": {
      "command": "npx",
      "args": ["-y", "@relay-org/relay-mcp"],
      "env": {
        "RELAY_URL": "http://your-server:8080",
        "RELAY_TOKEN": "your-token"
      }
    }
  }
}

For a local agent on the same machine, use a Unix socket instead (no token needed):

{
  "mcpServers": {
    "relay": {
      "command": "npx",
      "args": ["-y", "@relay-org/relay-mcp"],
      "env": {
        "RELAY_SOCKET": "/path/to/relay.sock"
      }
    }
  }
}

Environment variables

| Variable | Description | |---|---| | RELAY_SOCKET | Path to relay.sock. Takes priority over HTTP if set. | | RELAY_URL | Agent base URL. Default: http://127.0.0.1:8080 | | RELAY_TOKEN | Bearer token for HTTP transport. |

Tools

| Tool | Description | |---|---| | list_projects | All projects and environments | | list_deploys | Recent deploys, filterable by app/env/branch | | get_deploy | Single deploy record by ID | | get_deploy_logs | Build/deploy logs for a deploy ID | | cancel_deploy | Cancel an in-progress deploy | | rollback | Roll back to the previous image | | start_app | Start a stopped container | | stop_app | Stop a running container | | restart_app | Restart a container without a new build | | delete_lane | Remove a lane and its state | | get_app_config | Lane config (access policy, hosts, engine) | | set_app_config | Update lane config | | list_secrets | Secret key names for an app lane | | add_secret | Add or update a secret | | remove_secret | Delete a secret | | list_promotions | Promotion requests with approval state | | approve_promotion | Approve a queued promotion | | list_users | All user accounts (owner only) | | get_audit_log | Recent audit entries (owner only) | | get_server_config | Server-level config and theme | | set_server_config | Update server config or theme | | list_buildpack_plugins | Installed buildpack plugins | | remove_buildpack_plugin | Remove a buildpack plugin | | get_version | relayd and Station version info | | create_signed_link | Time-bounded share URL for signed-link lanes | | list_companions | Companion services for an app lane | | restart_companion | Restart a companion service |

Publishing (maintainers)

@relay-org/relay-mcp is published from GitHub Actions using npm trusted publishing (OIDC).

If publish fails with npm ERR! code E404 on:

PUT https://registry.npmjs.org/@relay-org%2frelay-mcp

verify package-level trusted publisher settings on npmjs.com for @relay-org/relay-mcp:

  • Organization/user: Relay-CI
  • Repository: Relay
  • Workflow filename: auto-release.yml (must match exactly)
  • Environment: npm-publish (must match exactly if configured in workflow)

Important:

  • Trusted publishing is configured per package, not per scope.
  • npm currently allows one trusted publisher connection per package.
  • If another workflow publishes this package, either:
    • switch the trusted publisher to that workflow, or
    • use a granular npm token in that alternate workflow.