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

tinyops-mcp-server

v0.1.1

Published

Model Context Protocol server for TinyOps. Manage developer-workflow automation rules from any MCP-compatible AI client.

Readme

TinyOps MCP Server

A Model Context Protocol server for TinyOps. Manage developer-workflow automation rules from any MCP-compatible AI client (Claude Desktop, Claude Code, and others).

TinyOps lets teams declare guardrails for their developer workflows as YAML rules (trigger → condition → action) and evaluates them against live data from GitHub, CI, and more. This server exposes that control plane as MCP tools, so an AI agent can list, create, test, and promote rules conversationally.

Features

  • 13 tools covering the full rule lifecycle: list, inspect, create, validate, dry-run, promote, and delete automation rules
  • Execution history: query when rules fired, whether conditions passed, and why
  • Shadow-first by design: rules created via MCP always start in shadow mode and must be explicitly promoted to live
  • Safe deletes: destructive operations require a two-step confirmation token
  • stdio transport: drops into any standard MCP client configuration

Requirements

Install

Pick whichever flow fits your setup:

Option A: run directly via npx (recommended)

No clone, no build. Just point your MCP client at npx:

{
  "mcpServers": {
    "tinyops": {
      "command": "npx",
      "args": ["-y", "tinyops-mcp-server"],
      "env": {
        "TINYOPS_API_KEY": "to_live_..."
      }
    }
  }
}

Option B: clone and build locally

git clone https://github.com/Okekejr/tinyops-mcp-server.git
cd tinyops-mcp-server
npm install
npm run build

This produces dist/index.js, the server entrypoint. Reference it by absolute path in your MCP client config (see "Claude Desktop / Claude Code" below).

Configuration

The server reads two environment variables:

| Variable | Required | Default | Description | | ------------------ | -------- | -------------------------- | ------------------------------------ | | TINYOPS_API_KEY | yes | (none) | Your key, format to_live_<64 hex> | | TINYOPS_API_URL | no | https://api.tinyops.cc | Override for self-hosted deployments |

Claude Desktop / Claude Code

If you ran Option B above, add the server to your MCP client config with a local path:

{
  "mcpServers": {
    "tinyops": {
      "command": "node",
      "args": ["/absolute/path/to/tinyops-mcp-server/dist/index.js"],
      "env": {
        "TINYOPS_API_KEY": "to_live_..."
      }
    }
  }
}

Restart the client. The server validates the key format and connectivity on startup, and exits with a clear error if either fails.

Tools

| Tool | Description | | -------------------- | ------------------------------------------------------------------ | | list_rules | List automation rules (paginated; filter by mode or trigger type) | | get_rule | Full details of one rule: YAML source, conditions, actions | | list_executions | Query execution history across rules | | get_execution | Full details of a single execution, including errors | | get_usage | Current usage vs. plan limits | | create_rule | Create a rule from YAML (starts in shadow mode) | | update_rule | Update a rule's YAML, preserving its ID and history | | validate_rule_yaml | Validate rule YAML without creating the rule | | test_rule | Dry-run a rule's conditions against current data | | promote_rule | Promote a rule from shadow mode to live | | set_rule_mode | Switch a rule between live, shadow, and disabled | | delete_rule | Delete a rule (two-step confirmation) | | deactivate_pack | Deactivate an automation pack and all its rules |

Development

npm run dev     # rebuild on change
npm test        # run the test suite (vitest)

License

MIT © Emmanuel Okeke