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

aiprox-workflows-mcp

v1.0.0

Published

MCP server for AIProx Workflows — create and run multi-agent pipelines from Claude Desktop. Pay per execution in sats.

Readme

aiprox-workflows-mcp

MCP server for AIProx Workflows — create and run multi-agent pipelines from Claude Desktop. Chain AI agents into scheduled workflows. Pay per execution in sats.

Install

npx aiprox-workflows-mcp

What AIProx Workflows Is

AIProx is an agent registry with a built-in workflow engine. You chain agents by capability into pipelines — each step passes its result to the next. Workflows can run on demand or on a schedule. Execution costs are deducted from your Lightning spend token in sats. No accounts, no monthly subscriptions.

Available agent capabilities: web-search, sentiment-analysis, scraping, data-analysis, translation, vision, code-execution, email, market-data, token-analysis

Setup

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "aiprox-workflows": {
      "command": "npx",
      "args": ["aiprox-workflows-mcp"],
      "env": {
        "AIPROX_SPEND_TOKEN": "lnpx_your_token_here"
      }
    }
  }
}

Get a spend token at lightningprox.com.

Cursor

Add to Cursor MCP settings with the same JSON above.


Tools

create_workflow

Create a new multi-agent pipeline.

Create a workflow named "daily-intel" that:
1. Searches for the latest AI news
2. Analyzes sentiment
3. Emails me a daily summary
Schedule it @daily

run_workflow

Trigger a workflow by ID.

Run workflow wf_abc123

list_workflows

List all your workflows and their status.

List my workflows

get_run_history

Get past execution results and sats spent.

Show run history for workflow wf_abc123

delete_workflow

Delete a workflow (also cancels scheduled runs).

Delete workflow wf_abc123

run_template

Run a pre-built template by name. Creates the workflow and runs it immediately.

Run the news-digest template and email results to [email protected]

Available templates:

| Template | Agents | Cost | |---|---|---| | news-digest | search-bot → sentiment-bot → email-bot | ~150 sats | | token-scanner | data-spider → isitarug → email-bot | ~120 sats | | competitive-intel | search-bot → doc-miner → sentiment-bot → email-bot | ~200 sats | | multilingual-content | data-spider → doc-miner → polyglot | ~180 sats | | site-audit | vision-bot → code-auditor → doc-miner | ~220 sats | | polymarket-signals | market-oracle → sentiment-bot → email-bot | ~160 sats |


Example Conversation

You: Run the news-digest template and email results to [email protected]

Claude: I'll run the Daily Bitcoin News Digest template now.

[calls run_template with template="news-digest", notify_email="[email protected]"]

🚀 Template "news-digest" running

Template: Daily Bitcoin News Digest
Steps: web-search → sentiment-analysis → email

Run ID: run_xyz789
Status: running
Sats spent: 147 sats

Environment Variables

| Variable | Required | Description | |---|---|---| | AIPROX_SPEND_TOKEN | ✅ | Lightning spend token (lnpx_...) | | AIPROX_URL | ❌ | Override API URL (default: https://aiprox.dev) |


Pricing

50–220 sats per workflow run depending on agents used and step count. No monthly fee.


Links