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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@robinson_ai_systems/paid-agent-mcp

v0.13.1

Published

Paid Agent MCP - Execute tasks using PAID models (OpenAI, Claude, etc.)

Downloads

3,047

Readme

OpenAI Worker MCP

Cost-controlled cloud execution for bulk tasks using OpenAI models.

Purpose

Do work, not think. Apply diffs, format code, summarize text, rename symbols, and perform small edits using OpenAI's fast, cheap models.

Sub-Agents

mini-worker (gpt-4o-mini)

  • Cost: $0.00015 per 1K input tokens
  • Speed: Very fast
  • Use for: Bulk edits, formatting, simple transforms

balanced-worker (gpt-4o)

  • Cost: $0.0025 per 1K input tokens
  • Speed: Fast
  • Use for: Complex refactors, API design

premium-worker (o1-mini)

  • Cost: $0.003 per 1K input tokens
  • Speed: Slow (reasoning model)
  • Use for: Security reviews, complex planning
  • Note: Requires approval

Tools

run_job

Execute a single job with specified agent.

openai_worker.run_job({
  agent: 'mini-worker',
  task: 'Format this TypeScript code: ...',
  input_refs: ['src/file.ts'],
  caps: { max_tokens: 4096 }
});

queue_batch

Queue multiple jobs for batch processing (cheaper, slower).

openai_worker.queue_batch({
  jobs: [
    { agent: 'mini-worker', task: 'Format file 1' },
    { agent: 'mini-worker', task: 'Format file 2' },
    // ... more jobs
  ]
});

get_job_status

Check status of a job.

openai_worker.get_job_status({ job_id: 'job_123' });

get_spend_stats

Get monthly spend statistics.

openai_worker.get_spend_stats();
// Returns:
{
  current_month: 5.23,
  total_budget: 25,
  remaining: 19.77,
  percentage_used: 20.9
}

Configuration

Environment Variables

OPENAI_API_KEY=sk-proj-...           # Your OpenAI API key
MONTHLY_BUDGET=25                     # Monthly budget cap (USD)
MAX_OPENAI_CONCURRENCY=2              # Max concurrent jobs
PER_JOB_TOKEN_LIMIT=8192              # Max tokens per job

MCP Configuration

{
  "mcpServers": {
    "openai-worker-mcp": {
      "command": "openai-worker-mcp",
      "args": [],
      "env": {
        "OPENAI_API_KEY": "sk-proj-...",
        "MONTHLY_BUDGET": "25",
        "MAX_OPENAI_CONCURRENCY": "2",
        "PER_JOB_TOKEN_LIMIT": "8192"
      }
    }
  }
}

Budget Protection

Monthly Cap

  • Hard limit at MONTHLY_BUDGET (default: $25)
  • Jobs rejected if budget exceeded
  • Resets on 1st of each month

Per-Job Limit

  • Max tokens per job: PER_JOB_TOKEN_LIMIT (default: 8192)
  • Prevents runaway costs on single jobs

Concurrency Control

  • Max concurrent jobs: MAX_OPENAI_CONCURRENCY (default: 2)
  • Prevents rate limit issues

Database

Jobs and spend tracked in SQLite database:

  • Location: packages/openai-worker-mcp/data/openai-worker.db
  • Tables: jobs, spend
  • Retention: All history (for auditing)

Build

npm install
npm run build

Link

npm link

Usage with Architect

Architect MCP automatically routes work to OpenAI Worker when:

  1. Task is classified as bulk/format/short-copy
  2. Cost forecast shows 2x speed improvement
  3. Estimated cost ≤ policy cap
  4. Monthly budget not exceeded

See COST_AWARE_ROUTING_GUIDE.md for complete workflow.

License

MIT