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

corsair

v0.1.52

Published

Corsair gives you (or your agent) safe access to hundreds of integrations. It natively handles all integration plumbing. The only code you write is the code that's specific to your use case. Your data stays in your database, not a third-party service.

Readme

Corsair: The Integration Layer for AI Agents

Corsair gives you (or your agent) safe access to hundreds of integrations. It natively handles all integration plumbing. The only code you write is the code that's specific to your use case. Your data stays in your database, not a third-party service.

Why this exists

Integrations make products capable. Integrations are also frustrating to write. If you look at any codebase with integrations, 95% of the code is identical. It's all just basic plumbing. The part of the integration that is unique to a codebase and actually adds value is probably just a few lines. We shouldn't waste time writing and maintaining the 95% for a few lines. Developers have accepted that we do. Corsair handles the 95% so you don't have to. It's simple to use and really hard to get wrong.


Get started

Install Corsair:

npm install corsair @corsair-dev/mcp

Declare your integrations in a file you can track and commit to git:

// corsair.ts
export const corsair = createCorsair({
  plugins: [slack(), github(), gmail(), linear(), googlecalendar()],
});

Connect it to your agent and start prompting:

const corsairMcpServer = runStdioMcpServer({ corsair })

query({
  prompt: "invite jim to next thursday's sales call. tell him over slack too so he can accept it. lmk when he does",
  options: {
	mcpServers: { corsair: corsairMcpServer },
  },
})

MCP exposes 4 tools, no matter how many plugins you have:

  • Setup: corsair_setup
  • Introspection: list_operations and get_schema
  • Execution: corsair_run

What you can do

Once connected, your agent can reason across all your integrations at once. Some things that become one-liners:

"Summarize my unread emails from customers, open a Linear issue for anything that looks urgent, and post the digest to #standup."

"When a new GitHub issue is labeled bug, create a matching Linear ticket and notify the on-call engineer in Slack."

The second one is a live webhook workflow. Corsair handles the event routing and your agent handles the logic.

Compatibility

We're adding stuff every day. Request something if you don't see it here. We will build it for you.

Integrations: Slack · Linear · HubSpot · Gmail · Google Calendar · GitHub · PostHog · Amplitude · Airtable · Google Drive · Spotify · Oura · and more

Frameworks: Claude · OpenAI · Vercel AI SDK · Mastra · and more

Beyond personal use

The same setup scales to multi-tenant SaaS. Set multiTenancy: true, call corsair.withTenant(teamId), and every API call is automatically scoped to those credentials.

Alternatives

You should choose the best integration solution for your use case. Here's a quick comparison, in an effort to demonstrate why we think Corsair is the best integration solution for any use case:

| | Corsair | cURL / CLI | SDK | Vibe code it yourself | Pay for a no-code platform | |--------------------------------------------------|---------|------------|-----|-----------------------|----------------------------| | Compatible with coding agents | 🟢 | 🟢 | 🔴 | inconsistent | via plugins | | Strongly typed | 🟢 | 🔴 | dependent on SDK | 🔴 | 🔴 | | Automatically refreshes data (minimal staleness) | 🟢 | 🔴 | 🔴 | 🔴 | inconsistent | | Webhook support | 🟢 | 🔴 | manual | 🔴 | 🟢 | | Data is seen only by you | 🟢 | 🟢 | 🟢 | 🟢 | 🔴 | | Updates with breaking API changes | 🟢 | 🔴 | manual | 🔴 | 🟢 | | Multi-tenant to use with customers | 🟢 | 🔴 | manual | 🔴 | 🔴 |

License

Licensed under the Apache License, Version 2.0. See LICENSE for details.