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

@useclawlink/mcp

v0.2.0

Published

Connect Gmail, Notion, Slack, GitHub, Google Workspace, HubSpot, Shopify and 230 other apps to any MCP client through ClawLink's hosted OAuth gateway.

Readme

@useclawlink/mcp

Connect Gmail, Notion, Slack, GitHub, Google Workspace, HubSpot, Shopify and 230 other apps to any MCP-capable agent through ClawLink's hosted OAuth gateway.

This package is a tiny stdio shim. ClawLink already runs a full MCP server over HTTP; this forwards your client's stdio JSON-RPC to it with your credential. No app passwords, no per-provider OAuth setup, no Google Cloud project — connect each app once and every tool becomes available to your agent.

Setup

Fastest path — two commands, nothing pasted anywhere:

npx -y @useclawlink/cli login                 # browser approval, stores a credential
npx -y @useclawlink/cli install claude-code   # or: cursor / windsurf / claude-desktop

The shim reads the credential login stores at ~/.clawlink/credentials.json, so the client config it writes contains no API key.

Manual path — works in any stdio MCP client (Claude Code, Claude Desktop, Cursor, Cline, Windsurf, and others). If you've run login, the env block is optional; otherwise create a key (cllk_live_...) at claw-link.dev under Settings → Devices and include it:

{
  "mcpServers": {
    "clawlink": {
      "command": "npx",
      "args": ["-y", "@useclawlink/mcp"],
      "env": { "CLAWLINK_API_KEY": "cllk_live_your_key_here" }
    }
  }
}

Config file locations: Cursor ~/.cursor/mcp.json (or .cursor/mcp.json per project), Windsurf ~/.codeium/windsurf/mcp_config.json, Claude Desktop claude_desktop_config.json in the app's config directory, Claude Code via claude mcp add --transport stdio clawlink -- npx -y @useclawlink/mcp.

Connect your apps. In the dashboard (or via npx -y @useclawlink/cli connect <app>), connect the providers you want. They appear as tools in your agent on its next session.

How it works

Your agent (stdio) ──▶ @useclawlink/mcp ──▶ https://claw-link.dev/api/mcp ──▶ Provider API

The shim is transparent and tool-agnostic: it forwards JSON-RPC messages and writes responses back. Your tool surface, connections, and permissions are all managed server-side by ClawLink. Provider OAuth tokens stay server-side, encrypted at rest; they are never written to your machine and never enter the agent's context.

Credential resolution order: CLAWLINK_API_KEY env var, then ~/.clawlink/credentials.json (written by clawlink login). The stored baseUrl travels with the stored key.

Environment variables

| Variable | Required | Default | Purpose | |---|---|---|---| | CLAWLINK_API_KEY | no, if clawlink login has run | — | Your ClawLink API key (cllk_live_...); overrides the stored credential | | CLAWLINK_BASE_URL | no | https://claw-link.dev | Override the ClawLink host (self-host / staging) |

Links

  • Dashboard: https://claw-link.dev/dashboard?utm_source=npm&utm_medium=referral&utm_content=mcp
  • Guide for any agent: https://claw-link.dev/learn/connect-apps-to-any-ai-agent
  • Docs: https://docs.claw-link.dev

MIT © ClawLink