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

@proceedgate/mcp-server

v1.0.1

Published

MCP Server for ProceedGate cost governance - control agent spending via Model Context Protocol

Readme

@proceedgate/mcp-server

MCP (Model Context Protocol) server for ProceedGate cost governance.

Control agent spending, enforce budgets, and prevent runaway costs through the Model Context Protocol.

Installation

npm install -g @proceedgate/mcp-server

Quick Start

Claude Desktop Configuration

Add to your Claude Desktop config (~/.claude/claude_desktop_config.json):

{
  "mcpServers": {
    "proceedgate": {
      "command": "npx",
      "args": [
        "-y",
        "@proceedgate/mcp-server",
        "--api-key",
        "YOUR_API_KEY"
      ]
    }
  }
}

Environment Variables

# Required
PROCEEDGATE_API_KEY=your_api_key_here

# Optional
PROCEEDGATE_BASE_URL=https://governor.proceedgate.dev
PROCEEDGATE_WORKSPACE_ID=your_workspace_id

Available Tools

gate_check

Check if an action is allowed under current budget/policy.

Parameters:

  • action (required): Type of action (tool_call, llm_call, browser_action, api_call)
  • policy_id (optional): Policy to evaluate (retry_friction_v1, low_confidence_v1)
  • tool (optional): Name of the tool being called
  • cost_estimate (optional): Estimated cost in USD
  • context (optional): Additional context for decision

Returns: Decision with proceed_token if allowed, or friction details if blocked.

gate_redeem

Resolve friction and get a proceed token after payment/approval.

Parameters:

  • decision_id (required): Decision ID from gate_check response
  • tx_hash (required): Transaction hash proving payment

Returns: Proceed token for the action.

get_balance

Get current credit balance and usage statistics.

Returns: Current balance, usage this period, budget limits.

set_budget

Set spending budget limits for the workspace.

Parameters:

  • daily_limit (optional): Daily spending cap in USDC
  • weekly_limit (optional): Weekly spending cap in USDC
  • monthly_limit (optional): Monthly spending cap in USDC
  • alert_threshold (optional): Percentage at which to alert (0-100)

Returns: Updated budget configuration.

get_usage_report

Get detailed usage report for cost analysis.

Parameters:

  • period (optional): Time period (today, week, month, all)

Returns: Breakdown of costs by action type, tool, and time.

Example Usage

Once configured, Claude can use ProceedGate tools:

User: Check if I can make an API call

Claude: Let me check with ProceedGate...
[Calls gate_check with action="api_call"]

The action is allowed. You have a proceed token valid for 45 seconds.
Current balance: 950 credits remaining.

Policies

retry_friction_v1

Applies friction after multiple retries:

  • Attempts 1-3: Free
  • Attempts 4-6: 0.004 USDC
  • Attempts 7-9: 0.008 USDC
  • Attempts 10+: 0.016 USDC

low_confidence_v1

Applies friction for low-confidence actions:

  • Confidence > 0.7: Free
  • Confidence 0.4-0.7: 0.002 USDC
  • Confidence < 0.4: 0.004 USDC

Security

  • API keys are never logged or exposed
  • All communication uses HTTPS
  • Proceed tokens are short-lived JWTs (45s TTL)
  • Tokens can be verified via JWKS endpoint

License

MIT