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

@pipeworx/sdk

v0.1.0

Published

Pipeworx SDK — live data for AI agents. 261 data sources, 961 tools, one import.

Readme

@pipeworx/sdk

Live data for AI agents. One import gives your agent access to 261 data sources and 961 tools — SEC filings, FDA adverse events, trade flows, mortgage rates, clinical trials, government contracts, and more.

Install

npm install @pipeworx/sdk

Quick start

import { Pipeworx } from '@pipeworx/sdk';

const px = new Pipeworx();

// Ask anything — Pipeworx picks the right tool
const trade = await px.ask("What is the US trade deficit with China?");
console.log(trade.data);          // { trade_balance_usd: -1811043217557, ... }
console.log(trade.toolSelected);  // "census_trade_balance"

// Call a specific tool
const weather = await px.call("get_weather", { latitude: 37.77, longitude: -122.42 });
console.log(weather.data);  // { temperature_f: 62, conditions: "Partly cloudy", ... }

Features

Ask anything

const result = await px.ask("What are the side effects of ozempic?");
// → Picks fda_drug_events, returns 54,647 adverse event reports

const filing = await px.ask("Get Apple's latest 10-K filing");
// → Picks edgar_company_filings, returns SEC data

const rate = await px.ask("Current 30-year mortgage rate?");
// → Picks fred_get_series(MORTGAGE30US), returns live FRED data

Discover tools

const tools = await px.discover("housing market data");
tools.tools.forEach(t => console.log(t.name, t.description));
// housing_market_snapshot, attom_avm, fred_get_series, ...

Scope to a domain

const housing = new Pipeworx({ task: "housing market" });
const tools = await housing.listTools();
// Only ~20 housing-relevant tools instead of 961

Agent memory

await px.remember("target_company", "AAPL");
const target = await px.recall("target_company"); // "AAPL"
const keys = await px.recall();                    // ["target_company"]
await px.forget("target_company");

Response metadata

Every response includes cost, cache status, and suggestions:

const result = await px.call("get_weather", { latitude: 37.77, longitude: -122.42 });
console.log(result.meta.cost);        // { total: 1, components: [{ name: "base", credits: 1 }] }
console.log(result.meta.cache);       // { hit: true, age_seconds: 45, fresh_until: "..." }
console.log(result.meta.suggestions); // [{ tool: "get_forecast", reason: "..." }]

Authentication

// Anonymous (50 calls/day)
const px = new Pipeworx();

// BYO API key (500 calls/day)
const px = new Pipeworx({ apiKey: "your-key" });

// OAuth/paid (2,000+ calls/day)
const px = new Pipeworx({ token: "bearer-token" });

Links