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

@cliqo/mcp

v0.3.0

Published

MCP server for cliqo.link — a pay-per-use (credits) link shortener. Shorten URLs, list/get/revoke links, and check your credit balance from any MCP client.

Downloads

35

Readme

@cliqo/mcp

A Model Context Protocol server for cliqo.link — a pay-per-use (credits) link shortener.

It lets any MCP client (Claude Desktop, Claude Code, etc.) create short links, list/get/revoke them, and check your remaining credit balance.

The server is a thin wrapper over the public cliqo v1 REST API — see the machine-readable reference at https://cliqo.link/llms.txt.

Prerequisites

  • Node.js >= 18
  • A cliqo API key. Create one in the dashboard under API keys — it is shown only once. The key's scopes determine which tools work:
    • links:readlist_links, get_link
    • links:writeshorten_url
    • links:deletedelete_link
    • billing:readget_credits

Tools

| Tool | Description | Scope | | --- | --- | --- | | shorten_url | Create a short link for a URL. Consumes one credit. | links:write | | list_links | List your links (newest first). Optionally include revoked links or filter by tag. | links:read | | get_link | Fetch a single link by its numeric id. | links:read | | delete_link | Revoke (delete) a link by id. Cannot be undone. | links:delete | | get_credits | Check how many link credits remain. | billing:read |

Usage

Set the CLIQO_API_KEY environment variable to your API key. The server speaks MCP over stdio.

Claude Desktop

Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "cliqo": {
      "command": "npx",
      "args": ["-y", "@cliqo/mcp"],
      "env": {
        "CLIQO_API_KEY": "your-api-key"
      }
    }
  }
}

Claude Code

claude mcp add cliqo --env CLIQO_API_KEY=your-api-key -- npx -y @cliqo/mcp

Run directly

CLIQO_API_KEY=your-api-key npx -y @cliqo/mcp

Environment variables

| Variable | Required | Description | | --- | --- | --- | | CLIQO_API_KEY | yes | Your cliqo API key, sent as a Bearer token. | | CLIQO_BASE_URL | no | Override the API base URL (defaults to https://api.cliqo.link). Useful for staging/self-hosted instances. |

Development

npm install
npm run build      # compile TypeScript to dist/
npm run watch      # recompile on change
npm start          # run the built server

The source lives in src/:

  • client.ts — thin HTTP client for the cliqo REST API.
  • index.ts — MCP server wiring and tool definitions.

License

MIT