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

@mcfagentic/agenttools

v1.0.0

Published

x402 client for MCF Agentic gateway — 187 AI agent tool endpoints (CRM, Email, Scheduling, Marketing, Ads, UGC, Pipeline, and more). Pay-per-request with USDC on Base.

Downloads

12

Readme

agenttools

x402 client for the MCF Agentic gateway. 187 pay-per-request AI agent tool endpoints.

Payments in USDC on Base L2 via the x402 protocol.

Install

npm install agenttools

Quick Start

import { AgentTools } from "agenttools";

const tools = new AgentTools("https://gateway.mcfagentic.com");

// Generate leads with the full AI pipeline ($1.00/call)
const leads = await tools.pipeline.generateLeads({
  industry: "plumbing",
  location: "Dallas, TX",
  count: 3,
  include_outreach: true,
});

// CRM operations ($0.001-$0.05/call)
const accounts = await tools.crm.listAccounts();
await tools.crm.createLead({ name: "Acme Corp", email: "[email protected]" });

// AI email classification ($0.05/call)
const result = await tools.email.classify({
  subject: "Re: Your proposal",
  body: "Looks great, let's schedule a call.",
});

// Send email ($0.05/call)
await tools.email.send({
  to: "[email protected]",
  subject: "Follow-up",
  html: "<p>Thanks for your interest!</p>",
});

Tools

| Tool | Endpoints | Price Range | Description | |------|-----------|-------------|-------------| | Pipeline | 3 | $0.25-$1.00 | Autonomous lead gen — one call, full research + outreach | | CRM | 21 | $0.001-$0.05 | Accounts, leads, deals, contacts, pipelines, work orders | | Email | 13 | $0.001-$0.10 | Send, classify, AI reply, entity extraction | | Scheduling | 9 | $0.001-$0.01 | Staff, appointments, availability, events | | Marketing | 11 | $0.001-$0.05 | Prospects, campaigns, outreach, solutions | | Ads | 23 | $0.001-$0.10 | Campaigns, A/B tests, audits, AI optimization | | UGC | 32 | $0.001-$0.25 | AI video pipeline, TikTok, YouTube, media library | | Accounting | 16 | $0.001-$0.10 | Invoices, expenses, job costs, P&L reports | | Analytics | 15 | $0.001-$0.05 | Events, funnels, cohorts, attribution, revenue | | Notifications | 4 | $0.001-$0.05 | Templates, send (email/SMS), delivery log | | Consulting | 31 | $0.001-$0.25 | AI proposals, client mgmt, transcription, scoring |

Payment

All endpoints use x402 (HTTP 402). Send a request without payment to get pricing info:

try {
  await tools.pipeline.generateLeads({ industry: "hvac", location: "Austin, TX" });
} catch (err) {
  if (err.name === "X402PaymentRequired") {
    console.log(err.pricing); // { price: "$1.00", network: "eip155:8453", ... }
  }
}

For automatic payments, use an x402-compatible HTTP client like @x402/fetch.

Gateway

Default: https://gateway.mcfagentic.com

GitHub: Cameron48/agenttools

License

MIT