🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

whooshly-mcp

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

whooshly-mcp

Create short links, dynamic QR codes, UTM templates, hosted vCards, and landing pages with lead capture from your AI assistant. A zero-dependency stdio bridge to Whooshly's hosted MCP server (also connectable directly by URL from claude.ai and ChatGPT).

latest
Source
npmnpm
Version
1.1.0
Version published
Maintainers
1
Created
Source

Whooshly MCP

Give your AI assistant a campaign-link toolkit. Whooshly exposes a hosted Model Context Protocol server so Claude, ChatGPT, and any MCP client can create short links, dynamic QR codes, UTM templates, hosted vCard pages, and landing pages with lead capture – and read back real click/scan analytics – directly from a conversation.

"Shorten this launch URL, make a QR for the flyer, and save a UTM template for the paid-social campaign" → three tools, one message, links you actually own.

  • 🔗 Short links on whooshly.co with live click tracking
  • 🟧 Dynamic QR codes returned as scannable PNGs, right in the chat
  • 🏷️ UTM templates you can reuse across campaigns
  • 📇 Hosted vCard digital business cards
  • 📊 Real analytics – exact click/scan totals and daily series per link
  • 💸 Pay once. Unlock the core toolkit for a one-time price – no subscription. See pricing →

The server is hosted – there's nothing to run for URL-based clients. This npm package is a small stdio bridge for clients that don't yet speak remote MCP (e.g. Claude Desktop) and for npx convenience.

1. Get an agent token

Every tool acts on your Whooshly account, so you need a token:

  • Sign in at app.whooshly.co
  • Open Agents → New token
  • Copy the token (shown once)

Reads and writes require the one-time Core unlock; get_billing_status works on any account so an agent can check before it acts.

2. Connect

Claude.ai / Claude (web, desktop, mobile) – by URL, no install

Add a Custom Connector pointing at the remote server. Claude runs the OAuth flow in-browser; approve it and the tools appear.

https://app.whooshly.co/api/mcp

Settings → Connectors → Add custom connector → paste the URL.

ChatGPT – by URL

Add a connector / custom MCP server with the same URL:

https://app.whooshly.co/api/mcp

Claude Code – one command

claude mcp add whooshly --transport http https://app.whooshly.co/api/mcp

Then authenticate with /mcp inside Claude Code, or pass a token header:

claude mcp add whooshly --transport http https://app.whooshly.co/api/mcp \
  --header "Authorization: Bearer $WHOOSHLY_TOKEN"

Claude Desktop (or any stdio client) – via this bridge

For clients that only speak stdio, use this package. Add it to your claude_desktop_config.json:

{
  "mcpServers": {
    "whooshly": {
      "command": "npx",
      "args": ["-y", "whooshly-mcp"],
      "env": {
        "WHOOSHLY_TOKEN": "your-agent-token"
      }
    }
  }
}

That's it – restart the client and the Whooshly tools are available.

Tools

ToolWhat it doesAccess
get_billing_statusCheck whether the account has unlocked Core / Proany
create_linkCreate a short link → id, slug, short URLCore
list_linksList your links, newest first (cursor-paged)Core
get_link_statsExact click/scan totals + daily series for a linkCore
create_qrCreate a dynamic QR code, returned as a scannable PNGCore
get_qrRe-fetch a saved QR code as a PNGCore
create_utmSave a reusable UTM templateCore
list_utmList saved UTM templatesCore
create_vcardCreate a hosted digital business card (vCard) pageCore
create_pageCreate a landing page on your subdomain from content blocksCore
update_pageEdit a page's blocks, theme, or slug – never deletesCore
list_pagesList your landing pages with lead countsCore
get_pageOne page's content, lead count & webhook delivery rollupCore
searchSearch your links by slug/destination (deep-research)Core
fetchFetch full details of one link by id (deep-research)Core

All read tools are annotated readOnlyHint; write tools can only create or edit – an agent can never delete anything, never read your leads' personal details (counts only), and never see or change a lead webhook. Every tool operates only on your own account (openWorldHint: false).

Example prompts

Once connected, try:

  • "Shorten https://example.com/2026-summer-launch with the slug summer26 and show me the QR code."
  • "Create a UTM template called paid-social with source instagram, medium cpc, campaign summer-launch."
  • "How many clicks did my summer26 link get this week?"
  • "Make a vCard for Jane Doe, Head of Growth at Acme, jane@acme.com."

Configuration

Env varDefaultPurpose
WHOOSHLY_TOKENRequired for the stdio bridge. Your agent token.
WHOOSHLY_MCP_URLhttps://app.whooshly.co/api/mcpOverride the endpoint (self-host / staging).

WHOOSHLY_API_TOKEN is accepted as an alias for WHOOSHLY_TOKEN.

How the bridge works

whooshly-mcp reads newline-delimited JSON-RPC from stdin, POSTs each message to the hosted server with your bearer token, and writes the correlated reply to stdout. It has zero npm dependencies (Node 18+ built-ins only), so it's small and easy to audit – the entire bridge is one file: bin/whooshly-mcp.mjs.

The heavy lifting – auth, rate limits, entitlement checks, QR rendering, analytics – all happens server-side on Whooshly. The bridge is a transport shim, nothing more.

License

MIT © Whooshly

Keywords

mcp

FAQs

Package last updated on 18 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts